diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index bc16629331..4d599f087b 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -37,6 +37,7 @@ How were these changes tested? What compilers / HPCs was it tested with? Are the - [ ] jet.intel - [ ] wcoss_cray - [ ] wcoss_dell_p3 +- [ ] CI ## Dependencies diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index f9880fd138..c3871899a6 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -9,7 +9,7 @@ env: base_url: $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs AUTH: ${{ secrets.GITHUB_TOKEN }} aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} - no_instances: 6 + no_instances: 10 jobs: diff --git a/.gitmodules b/.gitmodules index e20b6a6afb..f8e6226d48 100644 --- a/.gitmodules +++ b/.gitmodules @@ -38,3 +38,7 @@ path = CDEPS-interface/CDEPS url = https://github.com/NOAA-EMC/CDEPS branch = develop +[submodule "GOCART"] + path = GOCART + url = https://github.com/GEOS-ESM/GOCART + branch = develop diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..09ebb7306d --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,23 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: doc/UsersGuide/source/conf.py + +# Build documentation with MkDocs +#mkdocs: +# configuration: mkdocs.yml + +# Optionally build your docs in additional formats such as PDF and ePub +formats: all + +# Optionally set the version of Python and requirements required to build your docs +python: + version: 3.7 + install: + - requirements: doc/UsersGuide/requirements.txt diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 07ca4a33eb..8d9b9ecfdc 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 07ca4a33eb47be20629fdf30e72f2eaf690a5110 +Subproject commit 8d9b9ecfdcb790bc19a58a9611a27bd43c9ebd2d diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index cc52a64435..3ba29b577b 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -16,103 +16,92 @@ endif() include("cdeps_files.cmake") # CDEPS/share -add_library(share STATIC ${cdeps_share_files} ${ufs_cdeps_share_files}) -add_library(cdeps::share ALIAS share) +add_library(share OBJECT ${cdeps_share_files} ${ufs_cdeps_share_files}) set_target_properties(share PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(share PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/ufs/cdeps_share) -target_include_directories(share PUBLIC $ - $) -target_link_libraries(share PUBLIC esmf) -list(APPEND LIB_TARGETS share) +target_include_directories(share PRIVATE $) +target_link_libraries(share PRIVATE esmf) # CDEPS/streams -add_library(streams STATIC ${cdeps_streams_files}) -add_library(cdeps::streams ALIAS streams) -add_dependencies(streams cdeps::share) +add_library(streams OBJECT ${cdeps_streams_files}) +add_dependencies(streams share) set_target_properties(streams PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(streams PUBLIC $ - $) +target_include_directories(streams PRIVATE $) target_compile_definitions(streams PUBLIC "DISABLE_FoX") -target_link_libraries(streams PUBLIC cdeps::share) -target_link_libraries(streams PUBLIC esmf PIO::PIO_Fortran) -list(APPEND LIB_TARGETS streams) +target_link_libraries(streams PRIVATE share) +target_link_libraries(streams PRIVATE esmf PIO::PIO_Fortran) # CDEPS/dshr -add_library(dshr STATIC ${cdeps_dshr_files}) -add_library(cdeps::dshr ALIAS dshr) -add_dependencies(dshr cdeps::share cdeps::streams) +add_library(dshr OBJECT ${cdeps_dshr_files}) +add_dependencies(dshr share streams) set_target_properties(dshr PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dshr PUBLIC $ - $) -target_link_libraries(dshr PUBLIC cdeps::share cdeps::streams) -target_link_libraries(dshr PUBLIC esmf PIO::PIO_Fortran) -list(APPEND LIB_TARGETS dshr) +target_include_directories(dshr PRIVATE $) +target_link_libraries(dshr PRIVATE share streams) +target_link_libraries(dshr PRIVATE esmf PIO::PIO_Fortran) # CDEPS/datm -add_library(datm STATIC ${cdeps_datm_files}) -add_library(cdeps::datm ALIAS datm) -add_dependencies(datm cdeps::share cdeps::streams cdeps::dshr) +add_library(datm OBJECT ${cdeps_datm_files}) +add_dependencies(datm share streams dshr) set_target_properties(datm PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(datm PUBLIC $ - $) -target_link_libraries(datm PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(datm PUBLIC esmf PIO::PIO_Fortran) -list(APPEND LIB_TARGETS datm) +target_include_directories(datm PRIVATE $) +target_link_libraries(datm PRIVATE dshr share streams) +target_link_libraries(datm PRIVATE esmf PIO::PIO_Fortran) # CDEPS/dice -add_library(dice STATIC ${cdeps_dice_files}) -add_library(cdeps::dice ALIAS dice) -add_dependencies(dice cdeps::share cdeps::streams cdeps::dshr) +add_library(dice OBJECT ${cdeps_dice_files}) +add_dependencies(dice share streams dshr) set_target_properties(dice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dice PUBLIC $ - $) -target_link_libraries(dice PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(dice PUBLIC esmf) -list(APPEND LIB_TARGETS dice) +target_include_directories(dice PRIVATE $) +target_link_libraries(dice PRIVATE dshr share streams) +target_link_libraries(dice PRIVATE esmf) # CDEPS/dlnd -add_library(dlnd STATIC ${cdeps_dlnd_files}) -add_library(cdeps::dlnd ALIAS dlnd) -add_dependencies(dlnd cdeps::share cdeps::streams cdeps::dshr) +add_library(dlnd OBJECT ${cdeps_dlnd_files}) +add_dependencies(dlnd share streams dshr) set_target_properties(dlnd PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dlnd PUBLIC $ - $) -target_link_libraries(dlnd PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(dlnd PUBLIC esmf) -list(APPEND LIB_TARGETS dlnd) +target_include_directories(dlnd PRIVATE $) +target_link_libraries(dlnd PRIVATE dshr share streams) +target_link_libraries(dlnd PRIVATE esmf) # CDEPS/docn -add_library(docn STATIC ${cdeps_docn_files}) -add_library(cdeps::docn ALIAS docn) -add_dependencies(docn cdeps::share cdeps::streams cdeps::dshr) +add_library(docn OBJECT ${cdeps_docn_files}) +add_dependencies(docn share streams dshr) set_target_properties(docn PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(docn PUBLIC $ - $) -target_link_libraries(docn PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(docn PUBLIC esmf) -list(APPEND LIB_TARGETS docn) +target_include_directories(docn PRIVATE $) +target_link_libraries(docn PRIVATE dshr share streams) +target_link_libraries(docn PRIVATE esmf) # CDEPS/drof -add_library(drof STATIC ${cdeps_drof_files}) -add_library(cdeps::drof ALIAS drof) -add_dependencies(drof cdeps::share cdeps::streams cdeps::dshr) +add_library(drof OBJECT ${cdeps_drof_files}) +add_dependencies(drof share streams dshr) set_target_properties(drof PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(drof PUBLIC $ - $) -target_link_libraries(drof PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(drof PUBLIC esmf) -list(APPEND LIB_TARGETS drof) +target_include_directories(drof PRIVATE $) +target_link_libraries(drof PRIVATE dshr share streams) +target_link_libraries(drof PRIVATE esmf) # CDEPS/dwav -add_library(dwav STATIC ${cdeps_dwav_files}) -add_library(cdeps::dwav ALIAS dwav) -add_dependencies(dwav cdeps::share cdeps::streams cdeps::dshr) +add_library(dwav OBJECT ${cdeps_dwav_files}) +add_dependencies(dwav share streams dshr) set_target_properties(dwav PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dwav PUBLIC $ - $) -target_link_libraries(dwav PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(dwav PUBLIC esmf) -list(APPEND LIB_TARGETS dwav) +target_include_directories(dwav PRIVATE $) +target_link_libraries(dwav PRIVATE dshr share streams) +target_link_libraries(dwav PRIVATE esmf) + +# CDEPS +add_library(cdeps STATIC $ + $ + $ + $ + $ + $ + $ + $ + $) +add_library(cdeps::cdeps ALIAS cdeps) +target_include_directories(cdeps PUBLIC $ + $) +target_link_libraries(cdeps PUBLIC esmf PIO::PIO_Fortran) +list(APPEND LIB_TARGETS cdeps) ############################################################################### ### Install diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 2eca569055..55586f764d 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 2eca569055a0bcbd0f72859bc7d71ba802231ffe +Subproject commit 55586f764d7260ce9740ca880a9dc0118dca2313 diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index 2787dbfb21..92af0eaab8 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -154,6 +154,7 @@ list(APPEND cice_nuopc_cmeps_driver_files 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 + CICE/cicecore/drivers/nuopc/cmeps/ice_mesh_mod.F90 ) #-- Using NUOPC DMI driver diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 1513f5ccd3..d5428cfe55 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 1513f5ccd3642cea19ac90e9b343ccf4c06d367f +Subproject commit d5428cfe55b5510ae21ce24725157371312dbf73 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index bf2a924d8a..1ee3a47b23 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -64,13 +64,9 @@ list(APPEND _mediator_files 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}) - ### 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 diff --git a/CMakeLists.txt b/CMakeLists.txt index b1a1f6ddb2..1cf8e439bb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMW S2S S2SW NG-GODAS NG-GODAS-NEMSDATM) +list(APPEND VALID_APPS ATM ATMAERO ATMW S2S S2SW NG-GODAS NG-GODAS-NEMSDATM) 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}") @@ -24,6 +24,7 @@ endif() set(FMS OFF CACHE BOOL "Enable FMS") set(FV3 OFF CACHE BOOL "Enable FV3") +set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(CICE6 OFF CACHE BOOL "Enable CICE6") set(WW3 OFF CACHE BOOL "Enable WW3") @@ -39,6 +40,7 @@ include(cmake/configure_apps.cmake) message("") message("FMS .............. ${FMS}") message("FV3 .............. ${FV3}") +message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") @@ -129,7 +131,7 @@ if(INLINE_POST) endif() # See https://github.com/NOAA-EMC/NCEPLIBS-nemsio/pull/22 -target_link_libraries(nemsio::nemsio INTERFACE w3emc::w3emc_d bacio::bacio_4) +target_link_libraries(nemsio::nemsio INTERFACE w3nco::w3nco_d bacio::bacio_4) # Configure Python find_package(Python 3 REQUIRED COMPONENTS Interpreter) @@ -149,14 +151,19 @@ if(FV3) add_subdirectory(FV3) endif() +############################################################################### +### GOCART +############################################################################### +if(UFS_GOCART) + add_subdirectory(GOCART) +endif() + ############################################################################### ### Wave components [WW3] ############################################################################### if(WW3) if(CMAKE_Platform) - if(${CMAKE_Platform} STREQUAL "wcoss2") - set(WW3_COMP "wcoss_cray") - elseif(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") + if(${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") @@ -210,25 +217,26 @@ endif() ############################################################################### ### UFS Library [NEMS] ############################################################################### -list(APPEND _nems_srcs NEMS/src/module_NEMS_UTILS.F90 - NEMS/src/module_EARTH_GRID_COMP.F90 - NEMS/src/module_NEMS_GRID_COMP.F90 +list(APPEND _nems_srcs NEMS/src/module_EARTH_GRID_COMP.F90 NEMS/src/module_NEMS_Rusage.F90 NEMS/src/nems_c_rusage.c) 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_SOURCE_DIR}/NEMS/src) target_include_directories(ufs INTERFACE $ $) -list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) - if(JEDI_DRIVER) list(APPEND _ufs_defs_private JEDI_DRIVER=ON) endif() +if(UFS_GOCART) + add_dependencies(ufs UFS_Aerosols) + list(APPEND _ufs_defs_private FRONT_GOCART=Aerosol_Cap) + list(APPEND _ufs_libs_public UFS_Aerosols) +endif() + if(WW3) add_dependencies(ufs ww3_nems) list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) @@ -242,11 +250,6 @@ if(STOCH_PHYS) list(APPEND _ufs_libs_public stochastic_physics) endif() -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_NEMS_DATM=datm) @@ -278,11 +281,9 @@ if(CMEPS) endif() if(CDEPS) - add_dependencies(ufs cdeps::datm) - list(APPEND _ufs_defs_private CDEPS-interface/CDEPS - FRONT_CDEPS_DATM=atm_comp_nuopc) - include_directories(${CMAKE_CURRENT_BINARY_DIR}/CDEPS-interface/CDEPS/datm) - target_link_libraries(ufs PUBLIC cdeps::datm) + add_dependencies(ufs cdeps::cdeps) + list(APPEND _ufs_defs_private FRONT_CDEPS_DATM=cdeps_datm_comp) + target_link_libraries(ufs PUBLIC cdeps::cdeps) endif() target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") @@ -293,28 +294,7 @@ target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") ############################################################################### 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) - -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) -endif() - -target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") - -if(NEMSdatm OR CDEPS) - target_link_libraries(ufs_model PUBLIC ufs w3nco::w3nco_d) -endif() - -target_link_libraries(ufs_model PRIVATE ufs - esmf - NetCDF::NetCDF_Fortran) +target_link_libraries(ufs_model ufs esmf w3nco::w3nco_d) ############################################################################### ### Install diff --git a/FV3 b/FV3 index 7f08cc3934..4b11bd8de9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 7f08cc3934875896ee6f96350eb581c60da5e388 +Subproject commit 4b11bd8de924d14f85690462c1c4566becba1bb3 diff --git a/GOCART b/GOCART new file mode 160000 index 0000000000..ebcbc318ee --- /dev/null +++ b/GOCART @@ -0,0 +1 @@ +Subproject commit ebcbc318ee7a5f0d7c632582367063a7c0d9ade5 diff --git a/NEMS b/NEMS index b593c6c56d..e17870e576 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit b593c6c56d6bc3644af69370127f9e99d22b4a1d +Subproject commit e17870e57649b03164ad572c6d4b13eebd752944 diff --git a/WW3 b/WW3 index 0a6f4d28f8..097bbb65c4 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 0a6f4d28f816aee292d3a7ec0e344f2db54d63a3 +Subproject commit 097bbb65c4e372d52a733af911835a310cf54122 diff --git a/build.sh b/build.sh index 360f58ce5b..bcc1483b28 100755 --- a/build.sh +++ b/build.sh @@ -16,8 +16,10 @@ export ESMFMKFILE=${ESMFMKFILE:?"Please set ESMFMKFILE environment variable"} BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} mkdir -p ${BUILD_DIR} -[[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" +[[ -n "${MAPL_ROOT:-""}" ]] && CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${MAPL_ROOT}/share/MAPL/cmake" cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} -make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-} +# Turn off OpenMP threading for parallel builds +# to avoid exhausting the number of user processes +OMP_NUM_THREADS=1 make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-} diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index 26788a12b2..c2220628f8 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -53,3 +53,11 @@ if(APP MATCHES "^(S2S|S2SW)$") message("Configuring UFS app in S2S mode") endif() endif() + +if(APP MATCHES "^(ATMAERO)$") + 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) + set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) + message("Configuring UFS app in Atmosphere with Aerosols mode") +endif() diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index a970e24030..b5ade23ab6 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -57,13 +57,12 @@ set up specifically for issues related to build dependencies. Downloading the Weather Model Code ================================== -To clone the ufs-weather-model repository for this v2.0.0 release, execute the following commands: +To clone the develop branch of the ufs-weather-model repository, 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-v2.0.0 git submodule update --init --recursive Compiling the model will take place within the `ufs-weather-model` directory you just created. @@ -72,59 +71,18 @@ Compiling the model will take place within the `ufs-weather-model` directory you 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. +---------------------------- +Loading the required modules +---------------------------- -.. _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: +Modulefiles for `pre-configured platforms `_ +are located in ``modulefiles/ufs_.``. For example, 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 ../.. + module use modulefiles + module load ufs_hera.intel Note that loading this module file will also set the CMake environment variables shown in :numref:`Table %s `. @@ -148,25 +106,57 @@ Note that loading this module file will also set the CMake environment variables 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-v2.0.0/bin`` directory called -``setenv_nceplibs.sh`` that will set the NCEPLIBS-external variables for you. +------------------------------------------------------------- +Setting the CMAKE_FLAGS and CCPP_SUITES environment variables +------------------------------------------------------------- -Of course, you can also set the values of these variables yourself if you know where the paths are on your system. +You need to use the ``CMAKE_FLAGS`` environment variable to specify which application to build. +In order to have one or more CCPP physics suites available at runtime, you also need to select those suites at +build time by setting the ``CCPP_SUITES`` environment variable. Multiple suites can be set. Following +examples are for the bash shell. --------------------------------------------- -Setting the CCPP_SUITES environment variable --------------------------------------------- +For the ufs-weather-model ATM app (standalone ATM): -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 CMAKE_FLAGS="-DAPP=ATM" + export CCPP_SUITES="FV3_GFS_v16" + +For the ufs-weather-model ATM app (standalone ATM) in 32 bit: .. code-block:: console - export CCPP_SUITES="FV3_GFS_v15p2,FV3_GFS_v16beta" + export CMAKE_FLAGS="-DAPP=ATM -D32BIT=ON" + export CCPP_SUITES="FV3_GFS_v16" + +For the ufs-weather-model ATMW app (standalone ATM with wave): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATMW" + export CCPP_SUITES="FV3_GFS_v16" + +For the ufs-weather-model S2S app (atm/ice/ocean): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=S2S" + export CCPP_SUITES="FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst" + +For the ufs-weather-model S2S app (atm/ice/ocean) with debugging flags turned on, with verbose build messages: + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=S2S -DDEBUG=ON" + export CCPP_SUITES="FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst" + export BUILD_VERBOSE=1 + +For the ufs-weather-model S2SW app (atm/ice/ocean/wave): + +.. code-block:: console -If ``CCPP_SUITES`` is not set, the default is set to ``‘FV3_GFS_v15p2’`` in ``build.sh``. + export CMAKE_FLAGS="-DAPP=S2SW" + export CCPP_SUITES="FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp" ------------------ Building the model @@ -187,7 +177,9 @@ The WM can be built by running the following command from the `ufs-weather-model ./build.sh -Once ``build.sh`` is finished, you should see the executable, named ``ufs_weather_model``, in the top-level directory. +Once ``build.sh`` is finished, you should see the executable, named ``ufs_model``, in the `ufs-weather-model/build/` directory. +If it is desired to build in a different directory, specify the ``BUILD_DIR`` environment variable: e.g. ``export BUILD_DIR=test_cpld`` +will build in the `ufs-weather-model/test_cpld` directory instead. Expert help is available through a `user support forum `_ set up specifically for issues related to the Weather Model. @@ -195,5 +187,235 @@ 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. + +.. _UsingRegressionTest: + +-------------------------------- +Using the regression test script +-------------------------------- +The regression test script ``rt.sh`` in the tests/ directory can be +used to run a number of preconfigured test cases. It is the top-level script +that calls lower-level scripts to build, set up environments and run tests. +On `Tier-1 platforms `_, it can +be as simple as editing the ``rt.conf`` file and subsequently executing + +.. code-block:: console + + ./rt.sh -l rt.conf + +Following discussions are general, but the user may not be able to successfully +execute the script as is unless s/he is on one of the Tier-1 platforms. + +Each line in the PSV (Pipe-separated values) file ``rt.conf`` is used to either +build or run. The ``COMPILE`` line specifies the application to build (e.g. +``APP=S2S``), CCPP suite to use (e.g. ``SUITES=FV3_GFS_2017_coupled``), and +additional build options (e.g. ``DEBUG=Y``) as necessary. The ``RUN`` line +specifies the name of a test to run. The test name should match the name of one +of the test files in the tests/tests/ directory or, if the user is adding a new +test, the name of the new test file. The order of lines in ``rt.conf`` matters +since ``rt.sh`` processes them sequentially; a ``RUN`` line should be proceeded +by a ``COMPILE`` line that builds the model used in the test. The following example +``rt.conf`` file builds the standalone ATM model in 32 bit and then runs the +``control`` test: + +.. code-block:: console + + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | | fv3 + RUN | control | | fv3 + +The third column of ``rt.conf`` relates to the platform; if left blank, the test +runs on all Tier-1 platforms. The fourth column deals with baseline creation (more +on this later) and ``fv3`` means the test will be included during baseline creation. +The ``rt.conf`` file includes a large number of tests. If the user wants to run +only a specific test, s/he can either comment out (using the ``#`` prefix) the +tests to be skipped, or create a new file, e.g. ``my_rt.conf``, then execute +``./rt.sh -l my_rt.conf``. + +The regression test generates a number of log files. The summary log file +``RegressionTests_..log`` in the tests/ directory compares +the results of the test against the baseline specific to a given platform and +reports the outcome (hence, the 'regression' test): 'Missing file' results when +the expected files from the simulation are not found, and typically occurs +when the simulation did not run to completion; 'OK' means that the simulation +results are bit-for-bit identical to those of the baseline; 'NOT OK' when +the results are not bit-for-bit identical; and 'Missing baseline' when there +is no baseline data to compare against. + +More detailed log files are found in the tests/log_./ directory. +In particular, the user may find useful the run directory path provided as the +value of ``RUNDIR`` variable in the ``run_`` file. ``$RUNDIR`` is a +self-contained (i.e. sandboxed) directory with the executable file, initial +conditions, model configuration files, environment setup scripts and a batch job +submission script. The user can run the test by cd'ing into ``$RUNDIR`` and +invoking the command + +.. code-block:: console + + sbatch job_card + +This can be particularly useful for debugging and testing code changes. Note that +``$RUNDIR`` is automatically deleted at the end of a successful regression test; +specifying the ``-k`` option retains the ``$RUNDIR``, e.g. ``./rt.sh -l rt.conf -k``. + +Found inside the ``$RUNDIR`` directory are a number of model configuration files: +``input.nml``, ``model_configure``, ``nems.configure``, and other application +dependent files, e.g. ``ice_in`` for Subseasonal-to-Seasonal application. +These model configuration files are +generated by ``rt.sh`` from the template files in the tests/parm/ directory. +Specific values used to fill in the template files depend on the test being run, and +are set in two stages: default values are specified in ``tests/default_vars.sh`` and +the default values are overriden if necessary by those specified in a test file +``tests/tests/``. For example, the variable ``DT_ATMOS``, which is +substituted into the template file ``model_configure.IN`` to generate +``model_configure``, is initially assigned 1800 in the function ``export_fv3`` of the +script ``default_vars.sh``, but the test file ``tests/tests/control`` overrides by +reassigning 720 to the variable. + +Also found inside the ``$RUNDIR`` directory are the files ``fv3_run`` and +``job_card``, which are generated from the template files in the tests/fv3_conf/ +directory. The latter is a platform-specific batch job submission script, while +the former prepares the initial conditions by copying relevant data from the +input data directory of a given platform to the ``$RUNDIR`` directory. +:numref:`Table %s ` summarizes the subdirectories discussed above. + +.. _RTSubDirs: + +.. table:: *Regression test subdirectories* + + +-----------------+--------------------------------------------------------------------------------------+ + | **Name** | **Description** | + +=================+======================================================================================+ + | tests/ | Regression test root directory. Contains rt-related scripts and the summary log file | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/tests/ | Contains specific test files | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/parm/ | Contains templates for model configuration files | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/fv3_conf/ | Contains templates for setting up initial conditions and a batch job | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/log_*/ | Contains fine-grained log files | + +-----------------+--------------------------------------------------------------------------------------+ + +There are a number of command line options available to the ``rt.sh`` script. +The user can execute ``./rt.sh`` to see information on these options. A couple +of them are discussed here. When running a large number (10's or 100's) of +tests, the ``-e`` option to use the ecFlow workflow manager can significantly +decrease the testing time by queuing the jobs according to dependencies and +running them concurrently. The ``-n`` option can be used to run a single test; +for example, ``./rt.sh -n control`` will build the ATM model and run the +``control`` test. The ``-c`` option is used to create baseline. New +baslines are needed when code changes lead to result changes, and therefore +deviate from existing baselines on a bit-for-bit basis. + +When a developer needs to create a new test for his/her implementation, the +first step would be to identify a test in the tests/tests/ directory that can +be used as a basis and to examine the variables defined in the test file. As +mentioned above, some of the variables may be overrides for those defined in +``default_vars.sh``; others may be new variables that are needed specifically +for the test. Default variables and their values are defined in the ``export_fv3`` +function of the ``default_vars.sh`` script for ATM application, ``export_cpl`` +function for S2S application and ``export_datm`` function for GODAS application. +Also, the names of template files for model configuration and initial conditions +can be identified via variables ``INPUT_NML``, ``NEMS_CONFIGURE`` and ``FV3_RUN``; +for example, by trying ``grep -n INPUT_NML *`` inside the tests/ and tests/tests/ +directories. + +.. _UsingUnitTest: + +-------------------------- +Using the unit test script +-------------------------- +The unit test script ``utest`` in the tests/ directory can also be used to run +tests. Given the name of a test, ``utest`` carries out a suite of test cases. +Each test case addresses an aspect of the requirements new implementations +should satisfy, which are shown in :numref:`Table %s `. +For the following discussions on utest, the user should note the distinction between +'test name' and 'test case': examples of test name are ``control``, ``cpld_control`` +and ``regional_control`` which are all found in the /tests/tests/ directory, whereas +test case refers to any one of ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ``dbg``. + +.. _ImplementationRequirement: + +.. table:: *Implementation requirements* + + +----------+------------------------------------------------------------------------+ + | **Case** | **Description** | + +==========+========================================================================+ + | thr | Varying the number of threads produces the same results | + +----------+------------------------------------------------------------------------+ + | mpi | Varying the number of MPI tasks reproduces | + +----------+------------------------------------------------------------------------+ + | dcp | Varying the decomposition (i.e. tile layout of FV3) reproduces | + +----------+------------------------------------------------------------------------+ + | rst | Restarting reproduces | + +----------+------------------------------------------------------------------------+ + | bit | Model can be compiled in double/single precision and run to completion | + +----------+------------------------------------------------------------------------+ + | dbg | Model can be compiled and run to completion in debug mode | + +----------+------------------------------------------------------------------------+ + +The unit test uses the same testing framework used by the regression +test, and therefore it is recommened that the user first read +:numref:`Section %s `. All the files in +the subdirectories shown in :numref:`Table %s ` are relavant to the +unit test except that the ``utest`` script replaces ``rt.sh`` and the +``utest.bld`` file replaces ``rt.conf``. The /tests/utests/ directory contains +utest-specific lower-level scripts used to set up run configurations. + +On `Tier-1 platforms `_, tests can +be run by first modifying the PSV file ``utest.bld`` to specify the build options +and then invoking + +.. code-block:: console + + ./utest -n + +For example, including in the ``utest.bld`` file the following line + +.. code-block:: console + + control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON + +and then executing ``./utest -n control`` performs all six test cases +listed in :numref:`Table %s ` for ``control`` +test. At the end of the run, a log file ``UnitTests_..log`` +is generated in tests/ directory, which informs the user whether each test case +passed or failed. The user can choose to run a specific test case by invoking + +.. code-block:: console + + ./utest -n -c + +where ```` is one or +more comma-separated values selected from ``thr``, ``mpi``, ``dcp``, ``rst``, +``bit``, ``dbg``. For example, ``./utest -n control -c thr,rst`` runs the +``control`` test and checks the reproducibility of threading and restart. +The user can see different command line options available to ``utest`` by +executing ``./utest -h``; frequently used options are ``-e`` to use the ecFlow +workflow manager, and ``-k`` to keep the ``$RUNDIR``. In the following, +comparisons are made between the regression and unit tests on how they handle +different reproducibility tests. + +As discussed in :numref:`Section %s `, the variables and +values used to configure model parameters and to set up initial conditions in the +``$RUNDIR`` directory are set up in two stages: first, ``tests/default_vars.sh`` +define default values; then a specific test file in the tests/tests/ subdirectory +either overrides the default values or creates new variables if required by the test. +The regression test treats the different test cases shown in +:numref:`Table %s ` as different tests. Therefore, each +test case requires a test file in the tests/tests/ subdirectory; examples are +``control_2threads``, ``control_decomp``, ``control_restart`` and ``control_debug``, +which are just variations of ``control`` test to check various reproducibilities. +There are two potential issues with this approach. First, if several different +variations of a given test were to be created and included in the ``rt.conf`` file, +there are too many tests to run. Second, if a new test is added by the user, s/he +will also have to create these variations. The idea behind the unit test is to +automatically configure and run these variations, or test cases, given a test file. +For example, ``./utest -n control`` will run all six test cases in +:numref:`Table %s ` based on a single ``control`` test file. +Similarly, if the user adds a new test ``new_test``, then ``./utest -n new_test`` will +run all test cases. This is done by the unit test script ``utest`` by adding a third +stage of variable overrides, and the related scripts can be found in the tests/utests/ +directory. diff --git a/doc/UsersGuide/source/_static/custom.css b/doc/UsersGuide/source/_static/custom.css new file mode 100644 index 0000000000..85a59fca39 --- /dev/null +++ b/doc/UsersGuide/source/_static/custom.css @@ -0,0 +1,19 @@ +@import "default.css"; + +div.admonition-todo { +border-top: 2px solid red; +border-bottom: 2px solid red; +border-left: 2px solid red; +border-right: 2px solid red; +background-color: #ff6347 +} + +p.admonition-title { + display: offline; +} + +/*p.first.admonition-title { +background-color: #aa6347; +width: 100%; +} +*/ diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index 38fb298df7..89ad0dfd01 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -104,7 +104,7 @@ html_static_path = ['_static'] def setup(app): - app.add_stylesheet('custom.css') # may also be an URL + app.add_css_file('custom.css') # may also be an URL # Custom sidebar templates, must be a dictionary that maps document names # to template names. diff --git a/modulefiles/ufs_cheyenne.gnu b/modulefiles/ufs_cheyenne.gnu index cf8934e0f4..bd8ef8db1c 100644 --- a/modulefiles/ufs_cheyenne.gnu +++ b/modulefiles/ufs_cheyenne.gnu @@ -10,14 +10,14 @@ module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 -module load gnu/9.1.0 +module load gnu/10.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-v1.1.0/modulefiles/stack module load hpc/1.1.0 -module load hpc-gnu/9.1.0 +module load hpc-gnu/10.1.0 module load hpc-mpt/2.22 module load ufs_common diff --git a/modulefiles/ufs_cheyenne.gnu_debug b/modulefiles/ufs_cheyenne.gnu_debug index 05697c15b4..a77207c8d2 100644 --- a/modulefiles/ufs_cheyenne.gnu_debug +++ b/modulefiles/ufs_cheyenne.gnu_debug @@ -10,14 +10,14 @@ module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 -module load gnu/9.1.0 +module load gnu/10.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-v1.1.0/modulefiles/stack module load hpc/1.1.0 -module load hpc-gnu/9.1.0 +module load hpc-gnu/10.1.0 module load hpc-mpt/2.22 module load ufs_common_debug diff --git a/modulefiles/ufs_cheyenne.intel b/modulefiles/ufs_cheyenne.intel index 45b6cecf2d..c59f880338 100644 --- a/modulefiles/ufs_cheyenne.intel +++ b/modulefiles/ufs_cheyenne.intel @@ -10,14 +10,14 @@ module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 -module load intel/19.1.1 +module load intel/2021.2 module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf 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-intel/2021.2 module load hpc-mpt/2.22 module load ufs_common diff --git a/modulefiles/ufs_cheyenne.intel_debug b/modulefiles/ufs_cheyenne.intel_debug index bdc23f9ec1..dc75bb7c9e 100644 --- a/modulefiles/ufs_cheyenne.intel_debug +++ b/modulefiles/ufs_cheyenne.intel_debug @@ -10,14 +10,14 @@ module load cmake/3.18.2 # load programming environment module load ncarenv/1.3 -module load intel/19.1.1 +module load intel/2021.2 module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf 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-intel/2021.2 module load hpc-mpt/2.22 module load ufs_common_debug diff --git a/modulefiles/ufs_common b/modulefiles/ufs_common index 3e8a5a2a32..2395633b5d 100644 --- a/modulefiles/ufs_common +++ b/modulefiles/ufs_common @@ -12,11 +12,15 @@ module load fms/2020.04.03 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 g2/3.4.2 +module load g2tmpl/1.10.0 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.6 +module load upp/10.0.8 + +module load gftl-shared/v1.3.0 +module load yafyaml/v0.5.1 +module load mapl/v2.7.3 diff --git a/modulefiles/ufs_common_debug b/modulefiles/ufs_common_debug index 85008dbc37..949836de99 100644 --- a/modulefiles/ufs_common_debug +++ b/modulefiles/ufs_common_debug @@ -12,11 +12,15 @@ module load fms/2020.04.03 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 g2/3.4.2 +module load g2tmpl/1.10.0 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.6 +module load upp/10.0.8 + +module load gftl-shared/v1.3.0 +module load yafyaml/v0.5.1 +module load mapl/v2.7.3 \ No newline at end of file diff --git a/modulefiles/ufs_hera.gnu b/modulefiles/ufs_hera.gnu index 18ed52289f..2322493abc 100644 --- a/modulefiles/ufs_hera.gnu +++ b/modulefiles/ufs_hera.gnu @@ -6,15 +6,18 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Hera/GNU" +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + module use /contrib/sutils/modulefiles module load sutils +module load cmake/3.20.1 + module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 -module load cmake/3.20.0 - module load hpc-gnu/9.2.0 module load hpc-mpich/3.3.2 diff --git a/modulefiles/ufs_hera.gnu_debug b/modulefiles/ufs_hera.gnu_debug new file mode 100644 index 0000000000..cd2041578c --- /dev/null +++ b/modulefiles/ufs_hera.gnu_debug @@ -0,0 +1,29 @@ +#%Module + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running UFS Model on Hera/GNU" +} + +module-whatis "loads UFS Model prerequisites for Hera/GNU" + +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + +module use /contrib/sutils/modulefiles +module load sutils + +module load cmake/3.20.1 + +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 ufs_common_debug + +setenv CC mpicc +setenv CXX mpicxx +setenv FC mpif90 +setenv CMAKE_Platform hera.gnu diff --git a/modulefiles/ufs_hera.intel b/modulefiles/ufs_hera.intel index 77c7c6eebd..62fae39974 100644 --- a/modulefiles/ufs_hera.intel +++ b/modulefiles/ufs_hera.intel @@ -6,15 +6,18 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Hera/Intel" +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + module use /contrib/sutils/modulefiles module load sutils +module load cmake/3.20.1 + module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 -module load cmake/3.20.0 - module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 @@ -24,3 +27,6 @@ setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort setenv CMAKE_Platform hera.intel + +# use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. +setenv I_MPI_FABRICS shm:ofa diff --git a/modulefiles/ufs_hera.intel_debug b/modulefiles/ufs_hera.intel_debug index 2d15834c8f..815faf0995 100644 --- a/modulefiles/ufs_hera.intel_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -6,15 +6,18 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Hera/Intel" +module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles +module load miniconda3/3.7.3 + module use /contrib/sutils/modulefiles module load sutils +module load cmake/3.20.1 + module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 -module load cmake/3.20.0 - module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 @@ -24,3 +27,6 @@ setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort setenv CMAKE_Platform hera.intel + +# use shared memory and OpenFabrics Alliance (OFA) fabric with Intel MPI to circumvent RDMA-related bug in DAPL. +setenv I_MPI_FABRICS shm:ofa diff --git a/modulefiles/ufs_wcoss_cray b/modulefiles/ufs_wcoss_cray index a8a4b47d9f..2870d8cfaf 100644 --- a/modulefiles/ufs_wcoss_cray +++ b/modulefiles/ufs_wcoss_cray @@ -41,7 +41,7 @@ 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 g2tmpl/1.10.0 module load ip/3.3.3 module load nemsio/2.5.2 module load sp/2.3.3 @@ -52,7 +52,7 @@ module load gfsio/1.4.1 module load sfcio/1.4.1 module load sigio/2.3.2 -module load upp/10.0.4 +module load upp/10.0.8 ## WCOSS Cray execution prereqs: module load rca diff --git a/modulefiles/ufs_wcoss_cray_debug b/modulefiles/ufs_wcoss_cray_debug index 51325ab93a..bfe0e1c871 100644 --- a/modulefiles/ufs_wcoss_cray_debug +++ b/modulefiles/ufs_wcoss_cray_debug @@ -41,7 +41,7 @@ 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 g2tmpl/1.10.0 module load ip/3.3.3 module load nemsio/2.5.2 module load sp/2.3.3 @@ -52,7 +52,7 @@ module load gfsio/1.4.1 module load sfcio/1.4.1 module load sigio/2.3.2 -module load upp/10.0.4 +module load upp/10.0.8 ## WCOSS Cray execution prereqs: module load rca diff --git a/stochastic_physics b/stochastic_physics index 6fa2957d69..8caffebcab 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 6fa2957d69738c9bd1ac40467e89b14f56b55635 +Subproject commit 8caffebcabd01f59adceec567a69d66ab6f3045b diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index aa21bc0e3e..4f58b94a1e 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,17 +1,14 @@ -Wed Jun 2 13:15:53 MDT 2021 +Wed Jul 21 06:51:51 MDT 2021 Start Regression test -Compile 001 elapsed time 334 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 319 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 003 elapsed time 292 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 004 elapsed time 357 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 005 elapsed time 153 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 006 elapsed time 442 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 007 elapsed time 225 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y -Compile 008 elapsed time 231 seconds. APP=NG-GODAS-NEMSDATM - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control +Compile 001 elapsed time 346 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 337 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 305 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 377 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +51,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 292.542068 +0:The total amount of wall time = 285.731465 Test 001 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +96,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 140.598785 +0:The total amount of wall time = 135.579166 Test 002 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +113,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.641881 +0:The total amount of wall time = 174.293547 Test 003 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_flake +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +130,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 360.747137 +0:The total amount of wall time = 348.427634 Test 004 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_rrtmgp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +147,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 358.267020 +0:The total amount of wall time = 357.084767 Test 005 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +164,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 355.843563 +0:The total amount of wall time = 357.112051 Test 006 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_no_aero +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +181,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 344.423004 +0:The total amount of wall time = 342.968609 Test 007 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_ugwpv1 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +198,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 313.223319 +0:The total amount of wall time = 306.364651 Test 008 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_ras +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +215,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 288.883668 +0:The total amount of wall time = 288.182280 Test 009 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_gsd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +310,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.855199 +0:The total amount of wall time = 441.185251 Test 010 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1alpha +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +381,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.305795 +0:The total amount of wall time = 162.129277 Test 011 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +452,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 = 172.186492 +0:The total amount of wall time = 161.541290 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/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 @@ -526,13 +523,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 = 259.629538 +0:The total amount of wall time = 232.912284 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/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 @@ -547,41 +544,54 @@ 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 = 463.589044 +0:The total amount of wall time = 455.704303 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_debug Checking test 015 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.090630 +0:The total amount of wall time = 83.003795 Test 015 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/regional_control_debug -Checking test 016 regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_diag_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_diag_debug +Checking test 016 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 89.544019 + +Test 016 control_diag_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_regional_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/regional_control_debug +Checking test 017 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 = 134.984263 +0:The total amount of wall time = 129.241136 -Test 016 regional_control_debug PASS +Test 017 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_rrfs_v1alpha_debug -Checking test 017 fv3_rrfs_v1alpha_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/fv3_rrfs_v1alpha_debug +Checking test 018 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -645,14 +655,14 @@ Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 110.859743 +0:The total amount of wall time = 105.415303 -Test 017 fv3_rrfs_v1alpha_debug PASS +Test 018 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_rrfs_v1beta_debug -Checking test 018 fv3_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/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 @@ -716,14 +726,14 @@ Checking test 018 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 = 110.465518 +0:The total amount of wall time = 105.245905 -Test 018 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-20210528/GNU/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_gsd_debug -Checking test 019 fv3_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_gsd_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/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 @@ -787,79 +797,125 @@ Checking test 019 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 = 116.566173 +0:The total amount of wall time = 134.754213 + +Test 020 fv3_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_gsd_diag_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/fv3_gsd_diag_debug +Checking test 021 fv3_gsd_diag_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + +0:The total amount of wall time = 290.547993 + +Test 021 fv3_gsd_diag_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_thompson_debug +Checking test 022 control_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 95.960672 -Test 019 fv3_gsd_debug PASS +Test 022 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_thompson_debug -Checking test 020 control_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_thompson_no_aero_debug +Checking test 023 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 100.953265 +0:The total amount of wall time = 92.788592 -Test 020 control_thompson_debug PASS +Test 023 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_thompson_no_aero_debug -Checking test 021 control_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_thompson_extdiag_debug +Checking test 024 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 97.094433 +0:The total amount of wall time = 101.675884 -Test 021 control_thompson_no_aero_debug PASS +Test 024 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_rrtmgp_debug -Checking test 022 control_rrtmgp_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_rrtmgp_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_rrtmgp_debug +Checking test 025 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.334142 +0:The total amount of wall time = 90.948735 -Test 022 control_rrtmgp_debug PASS +Test 025 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_ugwpv1_debug -Checking test 023 control_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_ugwpv1_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_ugwpv1_debug +Checking test 026 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.779741 +0:The total amount of wall time = 88.502732 -Test 023 control_ugwpv1_debug PASS +Test 026 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/control_ras_debug -Checking test 024 control_ras_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/control_ras_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/control_ras_debug +Checking test 027 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.286058 +0:The total amount of wall time = 86.011157 -Test 024 control_ras_debug PASS +Test 027 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/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 @@ -923,14 +979,14 @@ Checking test 025 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 = 115.258025 +0:The total amount of wall time = 107.291997 -Test 025 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-20210528/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_62908/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_71665/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 @@ -944,11 +1000,11 @@ Checking test 026 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 = 218.861078 +0:The total amount of wall time = 213.817555 -Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 2 13:50:43 MDT 2021 -Elapsed time: 00h:34m:51s. Have a nice day! +Wed Jul 21 07:28:57 MDT 2021 +Elapsed time: 00h:37m:06s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index c5c04e9df6..de8a0510f5 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,26 +1,26 @@ -Wed Jun 2 13:30:50 MDT 2021 +Wed Jul 21 07:44:19 MDT 2021 Start Regression test -Compile 001 elapsed time 1005 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 1032 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp -Compile 003 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 004 elapsed time 710 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 861 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 722 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 785 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 727 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 254 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 226 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 229 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 216 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 383 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 196 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 391 seconds. APP=NG-GODAS -Compile 016 elapsed time 195 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 713 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_control +Compile 001 elapsed time 936 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1010 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 300 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 692 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 875 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 707 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 351 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 164 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 363 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 689 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 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.879853 +0:The total amount of wall time = 95.950773 Test 001 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,14 +126,14 @@ Checking test 002 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.698937 +0:The total amount of wall time = 52.721163 Test 002 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_controlfrac -Checking test 003 cpld_controlfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_2threads +Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -182,14 +182,14 @@ Checking test 003 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 = 97.346294 +0:The total amount of wall time = 252.647476 -Test 003 cpld_controlfrac PASS +Test 003 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restartfrac -Checking test 004 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_decomp +Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -238,14 +238,14 @@ Checking test 004 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.925036 +0:The total amount of wall time = 90.931101 -Test 004 cpld_restartfrac PASS +Test 004 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_2threads -Checking test 005 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_ca +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_ca +Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -294,294 +294,14 @@ Checking test 005 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 = 256.192946 +0:The total amount of wall time = 94.727199 -Test 005 cpld_2threads PASS +Test 005 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_decomp -Checking test 006 cpld_decomp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 95.479718 - -Test 006 cpld_decomp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_ca -Checking test 007 cpld_ca results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 95.756120 - -Test 007 cpld_ca PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_control_c192 -Checking test 008 cpld_control_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 405.430547 - -Test 008 cpld_control_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restart_c192 -Checking test 009 cpld_restart_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 285.057829 - -Test 009 cpld_restart_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_controlfrac_c192 -Checking test 010 cpld_controlfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 405.201604 - -Test 010 cpld_controlfrac_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restartfrac_c192 -Checking test 011 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_control_c192 +Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK Comparing sfcf048.tile3.nc .........OK @@ -590,479 +310,10 @@ Checking test 011 cpld_restartfrac_c192 results .... Comparing sfcf048.tile6.nc .........OK Comparing atmf048.tile1.nc .........OK Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 291.527905 - -Test 011 cpld_restartfrac_c192 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_control_c384 -Checking test 012 cpld_control_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 1584.126422 - -Test 012 cpld_control_c384 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restart_c384 -Checking test 013 cpld_restart_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 832.249200 - -Test 013 cpld_restart_c384 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_controlfrac_c384 -Checking test 014 cpld_controlfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 1579.526540 - -Test 014 cpld_controlfrac_c384 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restartfrac_c384 -Checking test 015 cpld_restartfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 832.174591 - -Test 015 cpld_restartfrac_c384 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmark -Checking test 016 cpld_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 897.846127 - -Test 016 cpld_bmark PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restart_bmark -Checking test 017 cpld_restart_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 487.448079 - -Test 017 cpld_restart_bmark PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmarkfrac -Checking test 018 cpld_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 892.882279 - -Test 018 cpld_bmarkfrac PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restart_bmarkfrac -Checking test 019 cpld_restart_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1096,22 +347,29 @@ Checking test 019 cpld_restart_bmarkfrac 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 + 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 = 486.485791 +0:The total amount of wall time = 388.960320 -Test 019 cpld_restart_bmarkfrac PASS +Test 006 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmarkfrac_v16 -Checking test 020 cpld_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_restart_c192 +Checking test 007 cpld_restart_c192 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1145,22 +403,29 @@ Checking test 020 cpld_bmarkfrac_v16 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-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 855.110064 - -Test 020 cpld_bmarkfrac_v16 PASS - + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmarkfrac_v16_nsst -Checking test 021 cpld_bmarkfrac_v16_nsst results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +0:The total amount of wall time = 288.884931 + +Test 007 cpld_restart_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_control_c384 +Checking test 008 cpld_control_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1197,19 +462,29 @@ Checking test 021 cpld_bmarkfrac_v16_nsst 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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 855.715647 - -Test 021 cpld_bmarkfrac_v16_nsst PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_restart_bmarkfrac_v16 -Checking test 022 cpld_restart_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK + +0:The total amount of wall time = 860.497707 + +Test 008 cpld_control_c384 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_restart_c384 +Checking test 009 cpld_restart_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1246,32 +521,19 @@ Checking test 022 cpld_restart_bmarkfrac_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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 483.332589 +0:The total amount of wall time = 465.342650 -Test 022 cpld_restart_bmarkfrac_v16 PASS +Test 009 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark_wave -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmark_wave -Checking test 023 cpld_bmark_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_bmark_v16 +Checking test 010 cpld_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1308,32 +570,19 @@ Checking test 023 cpld_bmark_wave 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 + 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 = 1188.173759 +0:The total amount of wall time = 683.336459 -Test 023 cpld_bmark_wave PASS +Test 010 cpld_bmark_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmarkfrac_wave -Checking test 024 cpld_bmarkfrac_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_restart_bmark_v16 +Checking test 011 cpld_restart_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1370,21 +619,19 @@ Checking test 024 cpld_bmarkfrac_wave 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 + 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 = 1227.263858 +0:The total amount of wall time = 390.909529 -Test 024 cpld_bmarkfrac_wave PASS +Test 011 cpld_restart_bmark_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmarkfrac_wave_v16 -Checking test 025 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16_nsst +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_bmark_v16_nsst +Checking test 012 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.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 @@ -1424,14 +671,14 @@ Checking test 025 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 = 938.387509 +0:The total amount of wall time = 680.385487 -Test 025 cpld_bmarkfrac_wave_v16 PASS +Test 012 cpld_bmark_v16_nsst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_bmarkfrac_wave_v16_noahmp -Checking test 026 cpld_bmarkfrac_wave_v16_noahmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_bmark_wave_v16 +Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1475,14 +722,14 @@ Checking test 026 cpld_bmarkfrac_wave_v16_noahmp 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 = 923.957977 +0:The total amount of wall time = 782.545150 -Test 026 cpld_bmarkfrac_wave_v16_noahmp PASS +Test 013 cpld_bmark_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_wave -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_control_wave -Checking test 027 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_wave +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_control_wave +Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1534,70 +781,14 @@ Checking test 027 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 = 126.277527 - -Test 027 cpld_control_wave PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_debug -Checking test 028 cpld_debug results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -0:The total amount of wall time = 296.589828 +0:The total amount of wall time = 119.270591 -Test 028 cpld_debug PASS +Test 014 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debugfrac -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/cpld_debugfrac -Checking test 029 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/cpld_debug +Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1646,14 +837,14 @@ Checking test 029 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 = 296.020302 +0:The total amount of wall time = 285.801560 -Test 029 cpld_debugfrac PASS +Test 015 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control -Checking test 030 control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control +Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1695,14 +886,14 @@ Checking test 030 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 166.674061 +0:The total amount of wall time = 164.810548 -Test 030 control PASS +Test 016 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_decomp -Checking test 031 control_decomp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_decomp +Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1744,14 +935,14 @@ Checking test 031 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.258595 +0:The total amount of wall time = 170.199269 -Test 031 control_decomp PASS +Test 017 control_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_2threads -Checking test 032 control_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_2threads +Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1793,14 +984,14 @@ Checking test 032 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 342.232759 +0:The total amount of wall time = 347.568206 -Test 032 control_2threads PASS +Test 018 control_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_restart -Checking test 033 control_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_restart +Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1838,14 +1029,14 @@ Checking test 033 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 74.033906 +0:The total amount of wall time = 73.578883 -Test 033 control_restart PASS +Test 019 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_CubedSphereGrid -Checking test 034 control_CubedSphereGrid results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1871,31 +1062,31 @@ Checking test 034 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 141.980292 +0:The total amount of wall time = 140.267342 -Test 034 control_CubedSphereGrid PASS +Test 020 control_CubedSphereGrid PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_wrtGauss_netcdf_parallel -Checking test 035 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 183.702654 +0:The total amount of wall time = 182.069934 -Test 035 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_c192 -Checking test 036 control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1905,14 +1096,14 @@ Checking test 036 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 577.242384 +0:The total amount of wall time = 576.964312 -Test 036 control_c192 PASS +Test 022 control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_c384 -Checking test 037 control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1922,14 +1113,14 @@ Checking test 037 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1057.414324 +0:The total amount of wall time = 1055.887706 -Test 037 control_c384 PASS +Test 023 control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_c384gdas -Checking test 038 control_c384gdas results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384gdas +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1971,14 +1162,14 @@ Checking test 038 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 907.098878 +0:The total amount of wall time = 901.601593 -Test 038 control_c384gdas PASS +Test 024 control_c384gdas PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_stochy -Checking test 039 control_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_stochy +Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1988,14 +1179,14 @@ Checking test 039 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 111.599225 +0:The total amount of wall time = 111.816345 -Test 039 control_stochy PASS +Test 025 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_ca -Checking test 040 control_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ca +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_ca +Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2005,14 +1196,14 @@ Checking test 040 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 110.092166 +0:The total amount of wall time = 110.009901 -Test 040 control_ca PASS +Test 026 control_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_lndp -Checking test 041 control_lndp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_lndp +Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2022,14 +1213,65 @@ Checking test 041 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 113.272808 +0:The total amount of wall time = 114.073376 + +Test 027 control_lndp PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_lheatstrg +Checking test 028 control_lheatstrg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 166.781474 + +Test 028 control_lheatstrg PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lseaspray +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_lseaspray +Checking test 029 control_lseaspray results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 172.660235 + +Test 029 control_lseaspray PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_merra2 +Checking test 030 control_merra2 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 203.936769 -Test 041 control_lndp PASS +Test 030 control_merra2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_lheatstrg -Checking test 042 control_lheatstrg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_rrtmgp +Checking test 031 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2039,14 +1281,14 @@ Checking test 042 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 166.232817 +0:The total amount of wall time = 275.594094 -Test 042 control_lheatstrg PASS +Test 031 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_merra2 -Checking test 043 control_merra2 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_csawmg +Checking test 032 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2056,14 +1298,14 @@ Checking test 043 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 203.236520 +0:The total amount of wall time = 341.500395 -Test 043 control_merra2 PASS +Test 032 control_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_rrtmgp -Checking test 044 control_rrtmgp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_csawmgt +Checking test 033 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2073,14 +1315,14 @@ Checking test 044 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 267.313273 +0:The total amount of wall time = 417.731620 -Test 044 control_rrtmgp PASS +Test 033 control_csawmgt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_flake -Checking test 045 control_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_flake +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_flake +Checking test 034 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2090,14 +1332,14 @@ Checking test 045 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 279.022786 +0:The total amount of wall time = 268.271305 -Test 045 control_flake PASS +Test 034 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_ugwpv1 -Checking test 046 control_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_ugwpv1 +Checking test 035 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2107,14 +1349,14 @@ Checking test 046 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 223.191026 +0:The total amount of wall time = 223.908968 -Test 046 control_ugwpv1 PASS +Test 035 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_ras -Checking test 047 control_ras results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_ras +Checking test 036 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2124,14 +1366,14 @@ Checking test 047 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 197.636238 +0:The total amount of wall time = 205.040063 -Test 047 control_ras PASS +Test 036 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_thompson -Checking test 048 control_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_thompson +Checking test 037 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2141,14 +1383,14 @@ Checking test 048 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 244.211674 +0:The total amount of wall time = 254.560473 -Test 048 control_thompson PASS +Test 037 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_thompson_no_aero -Checking test 049 control_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_thompson_no_aero +Checking test 038 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2158,14 +1400,14 @@ Checking test 049 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 235.028747 +0:The total amount of wall time = 244.358414 -Test 049 control_thompson_no_aero PASS +Test 038 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_noahmp -Checking test 050 control_noahmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_noahmp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_noahmp +Checking test 039 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2175,40 +1417,40 @@ Checking test 050 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 200.815626 +0:The total amount of wall time = 195.541512 -Test 050 control_noahmp PASS +Test 039 control_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_control -Checking test 051 regional_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_control +Checking test 040 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 = 348.661432 +0:The total amount of wall time = 342.813723 -Test 051 regional_control PASS +Test 040 regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_restart -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_restart -Checking test 052 regional_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_restart +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_restart +Checking test 041 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 = 189.769024 +0:The total amount of wall time = 189.938945 -Test 052 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_quilt -Checking test 053 regional_quilt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_quilt +Checking test 042 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2218,14 +1460,14 @@ Checking test 053 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 347.265329 +0:The total amount of wall time = 342.161566 -Test 053 regional_quilt PASS +Test 042 regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_quilt_2threads -Checking test 054 regional_quilt_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_quilt_2threads +Checking test 043 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2235,14 +1477,14 @@ Checking test 054 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 929.637863 +0:The total amount of wall time = 929.014738 -Test 054 regional_quilt_2threads PASS +Test 043 regional_quilt_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_quilt_hafs -Checking test 055 regional_quilt_hafs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_quilt_hafs +Checking test 044 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2250,28 +1492,28 @@ Checking test 055 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 346.728915 +0:The total amount of wall time = 338.007537 -Test 055 regional_quilt_hafs PASS +Test 044 regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_quilt_netcdf_parallel -Checking test 056 regional_quilt_netcdf_parallel results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_quilt_netcdf_parallel +Checking test 045 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 phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 348.261159 +0:The total amount of wall time = 347.367569 -Test 056 regional_quilt_netcdf_parallel PASS +Test 045 regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_quilt_RRTMGP -Checking test 057 regional_quilt_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_RRTMGP +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_quilt_RRTMGP +Checking test 046 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2281,14 +1523,14 @@ Checking test 057 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 529.290949 +0:The total amount of wall time = 530.078174 -Test 057 regional_quilt_RRTMGP PASS +Test 046 regional_quilt_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_gsd -Checking test 058 fv3_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_gsd +Checking test 047 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,14 +1618,14 @@ Checking test 058 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 195.409613 +0:The total amount of wall time = 254.850327 -Test 058 fv3_gsd PASS +Test 047 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_rrfs_v1alpha -Checking test 059 fv3_rrfs_v1alpha results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_rrfs_v1alpha +Checking test 048 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2447,14 +1689,14 @@ Checking test 059 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 97.587384 +0:The total amount of wall time = 100.210855 -Test 059 fv3_rrfs_v1alpha PASS +Test 048 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rap -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_rap -Checking test 060 fv3_rap results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rap +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_rap +Checking test 049 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2518,14 +1760,14 @@ Checking test 060 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.362893 +0:The total amount of wall time = 101.211153 -Test 060 fv3_rap PASS +Test 049 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_hrrr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_hrrr -Checking test 061 fv3_hrrr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_hrrr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_hrrr +Checking test 050 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2589,14 +1831,14 @@ Checking test 061 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 97.454467 +0:The total amount of wall time = 98.768889 -Test 061 fv3_hrrr PASS +Test 050 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_rrfs_v1beta -Checking test 062 fv3_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_rrfs_v1beta +Checking test 051 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2660,14 +1902,14 @@ Checking test 062 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.881463 +0:The total amount of wall time = 99.696833 -Test 062 fv3_rrfs_v1beta PASS +Test 051 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_HAFS_v0_hwrf_thompson -Checking test 063 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_HAFS_v0_hwrf_thompson +Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2731,14 +1973,14 @@ Checking test 063 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 = 196.947941 +0:The total amount of wall time = 197.085312 -Test 063 fv3_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 064 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2752,40 +1994,40 @@ Checking test 064 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 = 342.437338 +0:The total amount of wall time = 340.040680 -Test 064 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_debug -Checking test 065 control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_debug +Checking test 054 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.748582 +0:The total amount of wall time = 156.172570 -Test 065 control_debug PASS +Test 054 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_2threads_debug -Checking test 066 control_2threads_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_2threads_debug +Checking test 055 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 275.591195 +0:The total amount of wall time = 271.344542 -Test 066 control_2threads_debug PASS +Test 055 control_2threads_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_CubedSphereGrid_debug -Checking test 067 control_CubedSphereGrid_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_CubedSphereGrid_debug +Checking test 056 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2811,184 +2053,210 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 169.164437 +0:The total amount of wall time = 167.825971 + +Test 056 control_CubedSphereGrid_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_wrtGauss_netcdf_parallel_debug +Checking test 057 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 156.926537 + +Test 057 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_stochy_debug +Checking test 058 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 176.430128 -Test 067 control_CubedSphereGrid_debug PASS +Test 058 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_wrtGauss_netcdf_parallel_debug -Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_lndp_debug +Checking test 059 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.929161 +0:The total amount of wall time = 158.383113 -Test 068 control_wrtGauss_netcdf_parallel_debug PASS +Test 059 control_lndp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_stochy_debug -Checking test 069 control_stochy_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_lheatstrg_debug +Checking test 060 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.104742 +0:The total amount of wall time = 155.167315 -Test 069 control_stochy_debug PASS +Test 060 control_lheatstrg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_lndp_debug -Checking test 070 control_lndp_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_merra2_debug +Checking test 061 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.699258 +0:The total amount of wall time = 227.849123 -Test 070 control_lndp_debug PASS +Test 061 control_merra2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_lheatstrg_debug -Checking test 071 control_lheatstrg_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_rrtmgp_debug +Checking test 062 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.190133 +0:The total amount of wall time = 175.767237 -Test 071 control_lheatstrg_debug PASS +Test 062 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_merra2_debug -Checking test 072 control_merra2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_csawmg_debug +Checking test 063 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 207.010850 +0:The total amount of wall time = 273.317324 -Test 072 control_merra2_debug PASS +Test 063 control_csawmg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_rrtmgp_debug -Checking test 073 control_rrtmgp_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_csawmgt_debug +Checking test 064 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.089189 +0:The total amount of wall time = 301.228233 -Test 073 control_rrtmgp_debug PASS +Test 064 control_csawmgt_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_csawmg_debug -Checking test 074 control_csawmg_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_ugwpv1_debug +Checking test 065 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.814456 +0:The total amount of wall time = 168.203510 -Test 074 control_csawmg_debug PASS +Test 065 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_csawmgt_debug -Checking test 075 control_csawmgt_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_ras_debug +Checking test 066 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 278.476664 +0:The total amount of wall time = 161.363294 -Test 075 control_csawmgt_debug PASS +Test 066 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_ugwpv1_debug -Checking test 076 control_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_diag_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_diag_debug +Checking test 067 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 172.437410 +0:The total amount of wall time = 164.902434 -Test 076 control_ugwpv1_debug PASS +Test 067 control_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_ras_debug -Checking test 077 control_ras_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_thompson_debug +Checking test 068 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.906842 +0:The total amount of wall time = 180.226846 -Test 077 control_ras_debug PASS +Test 068 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_thompson_debug -Checking test 078 control_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_thompson_no_aero_debug +Checking test 069 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.140066 +0:The total amount of wall time = 175.736219 -Test 078 control_thompson_debug PASS +Test 069 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_thompson_no_aero_debug -Checking test 079 control_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_thompson_extdiag_debug +Checking test 070 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.290363 +0:The total amount of wall time = 190.549970 -Test 079 control_thompson_no_aero_debug PASS +Test 070 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/regional_control_debug -Checking test 080 regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/regional_control_debug +Checking test 071 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 = 254.913407 +0:The total amount of wall time = 255.447386 -Test 080 regional_control_debug PASS +Test 071 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_gsd_debug -Checking test 081 fv3_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_gsd_debug +Checking test 072 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3052,85 +2320,47 @@ Checking test 081 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.460993 +0:The total amount of wall time = 262.591483 -Test 081 fv3_gsd_debug PASS +Test 072 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_gsd_diag3d_debug -Checking test 082 fv3_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 = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_diag_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_gsd_diag_debug +Checking test 073 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK Comparing sfcf000.tile4.nc .........OK Comparing sfcf000.tile5.nc .........OK Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK Comparing atmf000.tile1.nc .........OK Comparing atmf000.tile2.nc .........OK Comparing atmf000.tile3.nc .........OK Comparing atmf000.tile4.nc .........OK Comparing atmf000.tile5.nc .........OK Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 261.186234 +0:The total amount of wall time = 409.526397 -Test 082 fv3_gsd_diag3d_debug PASS +Test 073 fv3_gsd_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_rrfs_v1beta_debug -Checking test 083 fv3_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_rrfs_v1beta_debug +Checking test 074 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3194,14 +2424,14 @@ Checking test 083 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 = 211.804015 +0:The total amount of wall time = 207.451362 -Test 083 fv3_rrfs_v1beta_debug PASS +Test 074 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_rrfs_v1alpha_debug -Checking test 084 fv3_rrfs_v1alpha_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_rrfs_v1alpha_debug +Checking test 075 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3265,14 +2495,14 @@ Checking test 084 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.653122 +0:The total amount of wall time = 212.776270 -Test 084 fv3_rrfs_v1alpha_debug PASS +Test 075 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 085 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 076 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 @@ -3336,14 +2566,14 @@ Checking test 085 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 = 220.210059 +0:The total amount of wall time = 217.554137 -Test 085 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 076 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 086 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 077 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3357,228 +2587,228 @@ Checking test 086 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 = 399.368935 +0:The total amount of wall time = 397.949782 -Test 086 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 077 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_control_cfsr -Checking test 087 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 101.508035 +0:The total amount of wall time = 100.580656 -Test 087 datm_control_cfsr PASS +Test 078 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_restart_cfsr -Checking test 088 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 -0:The total amount of wall time = 64.456424 +0:The total amount of wall time = 61.091472 -Test 088 datm_restart_cfsr PASS +Test 079 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_control_gefs -Checking test 089 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 -0:The total amount of wall time = 95.664826 +0:The total amount of wall time = 90.979234 -Test 089 datm_control_gefs PASS +Test 080 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_bulk_cfsr -Checking test 090 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 -0:The total amount of wall time = 98.646982 +0:The total amount of wall time = 97.478475 -Test 090 datm_bulk_cfsr PASS +Test 081 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_bulk_gefs -Checking test 091 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 -0:The total amount of wall time = 95.587869 +0:The total amount of wall time = 94.450451 -Test 091 datm_bulk_gefs PASS +Test 082 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_mx025_cfsr -Checking test 092 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 390.368690 +0:The total amount of wall time = 354.055857 -Test 092 datm_mx025_cfsr PASS +Test 083 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_mx025_gefs -Checking test 093 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 385.092664 +0:The total amount of wall time = 352.652725 -Test 093 datm_mx025_gefs PASS +Test 084 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_debug_cfsr -Checking test 094 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_debug_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/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 -0:The total amount of wall time = 274.796216 +0:The total amount of wall time = 266.440022 -Test 094 datm_debug_cfsr PASS +Test 085 datm_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_control_cfsr -Checking test 095 datm_cdeps_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_control_cfsr +Checking test 086 datm_cdeps_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 = 165.956346 +0:The total amount of wall time = 165.389936 -Test 095 datm_cdeps_control_cfsr PASS +Test 086 datm_cdeps_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_restart_cfsr -Checking test 096 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_restart_cfsr +Checking test 087 datm_cdeps_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 = 101.719485 +0:The total amount of wall time = 100.365882 -Test 096 datm_cdeps_restart_cfsr PASS +Test 087 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_control_gefs -Checking test 097 datm_cdeps_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_control_gefs +Checking test 088 datm_cdeps_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 = 159.436107 +0:The total amount of wall time = 158.315541 -Test 097 datm_cdeps_control_gefs PASS +Test 088 datm_cdeps_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_bulk_cfsr -Checking test 098 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_bulk_cfsr +Checking test 089 datm_cdeps_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 = 166.531089 +0:The total amount of wall time = 165.226156 -Test 098 datm_cdeps_bulk_cfsr PASS +Test 089 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_bulk_gefs -Checking test 099 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_bulk_gefs +Checking test 090 datm_cdeps_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 = 159.564724 +0:The total amount of wall time = 156.811826 -Test 099 datm_cdeps_bulk_gefs PASS +Test 090 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_mx025_cfsr -Checking test 100 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_mx025_cfsr +Checking test 091 datm_cdeps_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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 385.008755 +0:The total amount of wall time = 345.985061 -Test 100 datm_cdeps_mx025_cfsr PASS +Test 091 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_mx025_gefs -Checking test 101 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_mx025_gefs +Checking test 092 datm_cdeps_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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 377.677291 +0:The total amount of wall time = 346.280814 -Test 101 datm_cdeps_mx025_gefs PASS +Test 092 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_multiple_files_cfsr -Checking test 102 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_multiple_files_cfsr +Checking test 093 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.102692 +0:The total amount of wall time = 165.266134 -Test 102 datm_cdeps_multiple_files_cfsr PASS +Test 093 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/datm_cdeps_debug_cfsr -Checking test 103 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/datm_cdeps_debug_cfsr +Checking test 094 datm_cdeps_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 = 452.672167 +0:The total amount of wall time = 448.674683 -Test 103 datm_cdeps_debug_cfsr PASS +Test 094 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210528/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_52423/control_atmwav -Checking test 104 control_atmwav results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210720/INTEL/control_atmwav +working dir = /glade/scratch/briancurtis/FV3_RT/rt_67950/control_atmwav +Checking test 095 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3620,11 +2850,11 @@ Checking test 104 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 365.003334 +0:The total amount of wall time = 357.432446 -Test 104 control_atmwav PASS +Test 095 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 2 14:39:39 MDT 2021 -Elapsed time: 01h:08m:49s. Have a nice day! +Wed Jul 21 09:04:08 MDT 2021 +Elapsed time: 01h:19m:50s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index e7c1bc0143..14bd51dd1e 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,26 +1,26 @@ -Wed Jun 2 15:17:50 EDT 2021 +Tue Jul 20 17:01:59 EDT 2021 Start Regression test -Compile 001 elapsed time 767 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 840 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp -Compile 003 elapsed time 321 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 679 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 715 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 683 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 700 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 699 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 255 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 250 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 272 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 241 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 351 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 177 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 295 seconds. APP=NG-GODAS -Compile 016 elapsed time 193 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 660 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_control +Compile 001 elapsed time 765 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 295 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 730 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 699 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 695 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 256 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 318 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 225 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 327 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 179 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 707 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 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 = 100.873601 +The total amount of wall time = 120.350392 Test 001 cpld_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,14 +126,14 @@ Checking test 002 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.177591 +The total amount of wall time = 83.528166 Test 002 cpld_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_controlfrac -Checking test 003 cpld_controlfrac results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_2threads +Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -182,14 +182,14 @@ Checking test 003 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 = 160.464717 +The total amount of wall time = 156.751049 -Test 003 cpld_controlfrac PASS +Test 003 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restartfrac -Checking test 004 cpld_restartfrac results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_decomp +Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -238,14 +238,14 @@ Checking test 004 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 = 87.099152 +The total amount of wall time = 91.883799 -Test 004 cpld_restartfrac PASS +Test 004 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_2threads -Checking test 005 cpld_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_ca +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_ca +Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -294,716 +294,26 @@ Checking test 005 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 = 126.554085 +The total amount of wall time = 120.987994 -Test 005 cpld_2threads PASS +Test 005 cpld_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_decomp -Checking test 006 cpld_decomp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 119.678301 - -Test 006 cpld_decomp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_ca -Checking test 007 cpld_ca results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 129.334750 - -Test 007 cpld_ca PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_control_c192 -Checking test 008 cpld_control_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 431.365061 - -Test 008 cpld_control_c192 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restart_c192 -Checking test 009 cpld_restart_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 283.378493 - -Test 009 cpld_restart_c192 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_controlfrac_c192 -Checking test 010 cpld_controlfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 439.819892 - -Test 010 cpld_controlfrac_c192 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restartfrac_c192 -Checking test 011 cpld_restartfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 287.525663 - -Test 011 cpld_restartfrac_c192 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_control_c384 -Checking test 012 cpld_control_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 1521.485970 - -Test 012 cpld_control_c384 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restart_c384 -Checking test 013 cpld_restart_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 816.485506 - -Test 013 cpld_restart_c384 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_controlfrac_c384 -Checking test 014 cpld_controlfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 1522.893520 - -Test 014 cpld_controlfrac_c384 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restartfrac_c384 -Checking test 015 cpld_restartfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 788.985469 - -Test 015 cpld_restartfrac_c384 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmark -Checking test 016 cpld_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 = 886.830317 - -Test 016 cpld_bmark PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restart_bmark -Checking test 017 cpld_restart_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 = 447.843860 - -Test 017 cpld_restart_bmark PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmarkfrac -Checking test 018 cpld_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_control_c192 +Checking test 006 cpld_control_c192 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1037,32 +347,29 @@ Checking test 018 cpld_bmarkfrac 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 + 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 = 876.650857 +The total amount of wall time = 434.261229 -Test 018 cpld_bmarkfrac PASS +Test 006 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restart_bmarkfrac -Checking test 019 cpld_restart_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_restart_c192 +Checking test 007 cpld_restart_c192 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1096,22 +403,29 @@ Checking test 019 cpld_restart_bmarkfrac 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 - -The total amount of wall time = 484.300153 - -Test 019 cpld_restart_bmarkfrac PASS - + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmarkfrac_v16 -Checking test 020 cpld_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +The total amount of wall time = 313.199880 + +Test 007 cpld_restart_c192 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_control_c384 +Checking test 008 cpld_control_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1148,19 +462,29 @@ Checking test 020 cpld_bmarkfrac_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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -The total amount of wall time = 807.619987 - -Test 020 cpld_bmarkfrac_v16 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmarkfrac_v16_nsst -Checking test 021 cpld_bmarkfrac_v16_nsst results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK + +The total amount of wall time = 882.065631 + +Test 008 cpld_control_c384 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_restart_c384 +Checking test 009 cpld_restart_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1197,17 +521,17 @@ Checking test 021 cpld_bmarkfrac_v16_nsst 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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 861.525003 +The total amount of wall time = 439.592985 -Test 021 cpld_bmarkfrac_v16_nsst PASS +Test 009 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_restart_bmarkfrac_v16 -Checking test 022 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_bmark_v16 +Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK @@ -1249,29 +573,16 @@ Checking test 022 cpld_restart_bmarkfrac_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 = 459.428545 +The total amount of wall time = 689.187762 -Test 022 cpld_restart_bmarkfrac_v16 PASS +Test 010 cpld_bmark_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmark_wave -Checking test 023 cpld_bmark_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_restart_bmark_v16 +Checking test 011 cpld_restart_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1308,32 +619,19 @@ Checking test 023 cpld_bmark_wave 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 + 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 = 1224.573420 +The total amount of wall time = 393.191550 -Test 023 cpld_bmark_wave PASS +Test 011 cpld_restart_bmark_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmarkfrac_wave -Checking test 024 cpld_bmarkfrac_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16_nsst +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_bmark_v16_nsst +Checking test 012 cpld_bmark_v16_nsst results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1370,17 +668,17 @@ Checking test 024 cpld_bmarkfrac_wave 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 + 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 = 1247.974416 +The total amount of wall time = 733.411670 -Test 024 cpld_bmarkfrac_wave PASS +Test 012 cpld_bmark_v16_nsst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmarkfrac_wave_v16 -Checking test 025 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_bmark_wave_v16 +Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1424,14 +722,14 @@ Checking test 025 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 = 910.740494 +The total amount of wall time = 744.088191 -Test 025 cpld_bmarkfrac_wave_v16 PASS +Test 013 cpld_bmark_wave_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_bmarkfrac_wave_v16_noahmp -Checking test 026 cpld_bmarkfrac_wave_v16_noahmp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16_p7b +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_bmark_wave_v16_p7b +Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1475,14 +773,14 @@ Checking test 026 cpld_bmarkfrac_wave_v16_noahmp 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 = 933.386464 +The total amount of wall time = 885.276945 -Test 026 cpld_bmarkfrac_wave_v16_noahmp PASS +Test 014 cpld_bmark_wave_v16_p7b PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_control_wave -Checking test 027 cpld_control_wave results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_wave +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_control_wave +Checking test 015 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1534,70 +832,14 @@ Checking test 027 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 152.592325 - -Test 027 cpld_control_wave PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_debug -Checking test 028 cpld_debug results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 268.097207 +The total amount of wall time = 139.192812 -Test 028 cpld_debug PASS +Test 015 cpld_control_wave PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/cpld_debugfrac -Checking test 029 cpld_debugfrac results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/cpld_debug +Checking test 016 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1646,14 +888,14 @@ Checking test 029 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 = 271.524608 +The total amount of wall time = 262.491729 -Test 029 cpld_debugfrac PASS +Test 016 cpld_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control -Checking test 030 control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control +Checking test 017 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1695,14 +937,14 @@ Checking test 030 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 173.065544 +The total amount of wall time = 165.252463 -Test 030 control PASS +Test 017 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_decomp -Checking test 031 control_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_decomp +Checking test 018 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1744,14 +986,14 @@ Checking test 031 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 172.374469 +The total amount of wall time = 171.618897 -Test 031 control_decomp PASS +Test 018 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_2threads -Checking test 032 control_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1793,14 +1035,14 @@ Checking test 032 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 217.106803 +The total amount of wall time = 199.182524 -Test 032 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_restart -Checking test 033 control_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1838,14 +1080,14 @@ Checking test 033 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.920150 +The total amount of wall time = 97.560176 -Test 033 control_restart PASS +Test 020 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_CubedSphereGrid -Checking test 034 control_CubedSphereGrid results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1871,14 +1113,14 @@ Checking test 034 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 127.702318 +The total amount of wall time = 176.609697 -Test 034 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_wrtGauss_netcdf_parallel -Checking test 035 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1888,14 +1130,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 423.320237 +The total amount of wall time = 337.070146 -Test 035 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_c192 -Checking test 036 control_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c192 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1905,14 +1147,14 @@ Checking test 036 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.763352 +The total amount of wall time = 531.154510 -Test 036 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_stochy -Checking test 037 control_stochy results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_stochy +Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1922,14 +1164,14 @@ Checking test 037 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 119.382702 +The total amount of wall time = 118.164331 -Test 037 control_stochy PASS +Test 024 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_ca -Checking test 038 control_ca results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ca +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_ca +Checking test 025 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1939,14 +1181,14 @@ Checking test 038 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 117.329472 +The total amount of wall time = 114.863738 -Test 038 control_ca PASS +Test 025 control_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_lndp -Checking test 039 control_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_lndp +Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1956,14 +1198,31 @@ Checking test 039 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 125.709553 +The total amount of wall time = 118.991835 + +Test 026 control_lndp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_lheatstrg +Checking test 027 control_lheatstrg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 195.570292 -Test 039 control_lndp PASS +Test 027 control_lheatstrg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_lheatstrg -Checking test 040 control_lheatstrg results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lseaspray +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_lseaspray +Checking test 028 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1973,14 +1232,14 @@ Checking test 040 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 195.752555 +The total amount of wall time = 173.772231 -Test 040 control_lheatstrg PASS +Test 028 control_lseaspray PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_merra2 -Checking test 041 control_merra2 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_merra2 +Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1990,14 +1249,14 @@ Checking test 041 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 246.530746 +The total amount of wall time = 242.790024 -Test 041 control_merra2 PASS +Test 029 control_merra2 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_rrtmgp -Checking test 042 control_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_rrtmgp +Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2007,14 +1266,14 @@ Checking test 042 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 250.774306 +The total amount of wall time = 251.385301 -Test 042 control_rrtmgp PASS +Test 030 control_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_csawmg -Checking test 043 control_csawmg results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_csawmg +Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2024,14 +1283,14 @@ Checking test 043 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.331039 +The total amount of wall time = 322.019870 -Test 043 control_csawmg PASS +Test 031 control_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_csawmgt -Checking test 044 control_csawmgt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_csawmgt +Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2041,14 +1300,14 @@ Checking test 044 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 430.383577 +The total amount of wall time = 406.845020 -Test 044 control_csawmgt PASS +Test 032 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_flake -Checking test 045 control_flake results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_flake +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_flake +Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2058,14 +1317,14 @@ Checking test 045 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 259.588929 +The total amount of wall time = 261.258725 -Test 045 control_flake PASS +Test 033 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_ugwpv1 -Checking test 046 control_ugwpv1 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1 +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_ugwpv1 +Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2075,14 +1334,14 @@ Checking test 046 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 204.685548 +The total amount of wall time = 233.402642 -Test 046 control_ugwpv1 PASS +Test 034 control_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_ras -Checking test 047 control_ras results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_ras +Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2092,14 +1351,14 @@ Checking test 047 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 197.083277 +The total amount of wall time = 221.620467 -Test 047 control_ras PASS +Test 035 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_thompson -Checking test 048 control_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_thompson +Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2109,14 +1368,14 @@ Checking test 048 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.019540 +The total amount of wall time = 261.626237 -Test 048 control_thompson PASS +Test 036 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_thompson_no_aero -Checking test 049 control_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_thompson_no_aero +Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2126,14 +1385,14 @@ Checking test 049 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 235.331337 +The total amount of wall time = 223.285451 -Test 049 control_thompson_no_aero PASS +Test 037 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_noahmp -Checking test 050 control_noahmp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_noahmp +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_noahmp +Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2143,40 +1402,40 @@ Checking test 050 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 198.206719 +The total amount of wall time = 226.399812 -Test 050 control_noahmp PASS +Test 038 control_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_control -Checking test 051 regional_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_control +Checking test 039 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 = 328.307005 +The total amount of wall time = 333.732153 -Test 051 regional_control PASS +Test 039 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_restart -Checking test 052 regional_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_restart +Checking test 040 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 177.807001 +The total amount of wall time = 179.387352 -Test 052 regional_restart PASS +Test 040 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_quilt -Checking test 053 regional_quilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_quilt +Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2186,14 +1445,14 @@ Checking test 053 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 328.051965 +The total amount of wall time = 327.296938 -Test 053 regional_quilt PASS +Test 041 regional_quilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_quilt_2threads -Checking test 054 regional_quilt_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_quilt_2threads +Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2203,14 +1462,14 @@ Checking test 054 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 281.613529 +The total amount of wall time = 283.863264 -Test 054 regional_quilt_2threads PASS +Test 042 regional_quilt_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_quilt_hafs -Checking test 055 regional_quilt_hafs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_quilt_hafs +Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2218,28 +1477,28 @@ Checking test 055 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 352.294288 +The total amount of wall time = 329.436757 -Test 055 regional_quilt_hafs PASS +Test 043 regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_quilt_netcdf_parallel -Checking test 056 regional_quilt_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_quilt_netcdf_parallel +Checking test 044 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 = 338.157666 +The total amount of wall time = 354.785282 -Test 056 regional_quilt_netcdf_parallel PASS +Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_quilt_RRTMGP -Checking test 057 regional_quilt_RRTMGP results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_quilt_RRTMGP +Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2249,14 +1508,14 @@ Checking test 057 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 472.278348 +The total amount of wall time = 497.427043 -Test 057 regional_quilt_RRTMGP PASS +Test 045 regional_quilt_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_gsd -Checking test 058 fv3_gsd results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_gsd +Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2344,14 +1603,14 @@ Checking test 058 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 187.978473 +The total amount of wall time = 242.103034 -Test 058 fv3_gsd PASS +Test 046 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_rrfs_v1alpha -Checking test 059 fv3_rrfs_v1alpha results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_rrfs_v1alpha +Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2415,14 +1674,14 @@ Checking test 059 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.329525 +The total amount of wall time = 123.320788 -Test 059 fv3_rrfs_v1alpha PASS +Test 047 fv3_rrfs_v1alpha PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_rap -Checking test 060 fv3_rap results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rap +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_rap +Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2486,14 +1745,14 @@ Checking test 060 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.041845 +The total amount of wall time = 123.414928 -Test 060 fv3_rap PASS +Test 048 fv3_rap PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_hrrr -Checking test 061 fv3_hrrr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_hrrr +Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2557,14 +1816,14 @@ Checking test 061 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 117.425248 +The total amount of wall time = 119.464577 -Test 061 fv3_hrrr PASS +Test 049 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_rrfs_v1beta -Checking test 062 fv3_rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_rrfs_v1beta +Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2628,14 +1887,14 @@ Checking test 062 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 95.796915 +The total amount of wall time = 137.602291 -Test 062 fv3_rrfs_v1beta PASS +Test 050 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_HAFS_v0_hwrf_thompson -Checking test 063 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/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 @@ -2699,14 +1958,14 @@ Checking test 063 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 = 164.176602 +The total amount of wall time = 194.946979 -Test 063 fv3_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 064 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/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 @@ -2720,40 +1979,40 @@ Checking test 064 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 = 333.494300 +The total amount of wall time = 334.041003 -Test 064 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_debug -Checking test 065 control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_debug +Checking test 053 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 149.416646 +The total amount of wall time = 146.323656 -Test 065 control_debug PASS +Test 053 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_2threads_debug -Checking test 066 control_2threads_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_2threads_debug +Checking test 054 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.641080 +The total amount of wall time = 260.064403 -Test 066 control_2threads_debug PASS +Test 054 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_CubedSphereGrid_debug -Checking test 067 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_CubedSphereGrid_debug +Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2779,184 +2038,210 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 156.685248 +The total amount of wall time = 155.544577 -Test 067 control_CubedSphereGrid_debug PASS +Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_wrtGauss_netcdf_parallel_debug -Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_wrtGauss_netcdf_parallel_debug +Checking test 056 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.535828 +The total amount of wall time = 155.879191 + +Test 056 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_stochy_debug +Checking test 057 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 168.477485 + +Test 057 control_stochy_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_lndp_debug +Checking test 058 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 149.613333 -Test 068 control_wrtGauss_netcdf_parallel_debug PASS +Test 058 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_stochy_debug -Checking test 069 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_lheatstrg_debug +Checking test 059 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.799237 +The total amount of wall time = 144.823474 -Test 069 control_stochy_debug PASS +Test 059 control_lheatstrg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_lndp_debug -Checking test 070 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_merra2_debug +Checking test 060 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 151.617105 +The total amount of wall time = 224.527354 -Test 070 control_lndp_debug PASS +Test 060 control_merra2_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_lheatstrg_debug -Checking test 071 control_lheatstrg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_rrtmgp_debug +Checking test 061 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.745686 +The total amount of wall time = 166.473852 -Test 071 control_lheatstrg_debug PASS +Test 061 control_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_merra2_debug -Checking test 072 control_merra2_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_csawmg_debug +Checking test 062 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 237.622398 +The total amount of wall time = 282.931040 -Test 072 control_merra2_debug PASS +Test 062 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_rrtmgp_debug -Checking test 073 control_rrtmgp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_csawmgt_debug +Checking test 063 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.251357 +The total amount of wall time = 304.460382 -Test 073 control_rrtmgp_debug PASS +Test 063 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_csawmg_debug -Checking test 074 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_ugwpv1_debug +Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.571632 +The total amount of wall time = 160.245067 -Test 074 control_csawmg_debug PASS +Test 064 control_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_csawmgt_debug -Checking test 075 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_ras_debug +Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 316.173197 +The total amount of wall time = 150.943076 -Test 075 control_csawmgt_debug PASS +Test 065 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_ugwpv1_debug -Checking test 076 control_ugwpv1_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_diag_debug +Checking test 066 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.867712 +The total amount of wall time = 154.526071 -Test 076 control_ugwpv1_debug PASS +Test 066 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_ras_debug -Checking test 077 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_thompson_debug +Checking test 067 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.384730 +The total amount of wall time = 175.088677 -Test 077 control_ras_debug PASS +Test 067 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_thompson_debug -Checking test 078 control_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_thompson_no_aero_debug +Checking test 068 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 174.479691 +The total amount of wall time = 168.634273 -Test 078 control_thompson_debug PASS +Test 068 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_thompson_no_aero_debug -Checking test 079 control_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug_extdiag +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_thompson_extdiag_debug +Checking test 069 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.132271 +The total amount of wall time = 182.209090 -Test 079 control_thompson_no_aero_debug PASS +Test 069 control_thompson_extdiag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/regional_control_debug -Checking test 080 regional_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/regional_control_debug +Checking test 070 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 = 258.799481 +The total amount of wall time = 255.627462 -Test 080 regional_control_debug PASS +Test 070 regional_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_gsd_debug -Checking test 081 fv3_gsd_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_gsd_debug +Checking test 071 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3020,85 +2305,47 @@ Checking test 081 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 210.397441 +The total amount of wall time = 254.139718 -Test 081 fv3_gsd_debug PASS +Test 071 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_gsd_diag3d_debug -Checking test 082 fv3_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 = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_diag_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_gsd_diag_debug +Checking test 072 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK Comparing sfcf000.tile4.nc .........OK Comparing sfcf000.tile5.nc .........OK Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK Comparing atmf000.tile1.nc .........OK Comparing atmf000.tile2.nc .........OK Comparing atmf000.tile3.nc .........OK Comparing atmf000.tile4.nc .........OK Comparing atmf000.tile5.nc .........OK Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 246.497774 +The total amount of wall time = 334.868684 -Test 082 fv3_gsd_diag3d_debug PASS +Test 072 fv3_gsd_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_rrfs_v1beta_debug -Checking test 083 fv3_rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_rrfs_v1beta_debug +Checking test 073 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3162,14 +2409,14 @@ Checking test 083 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 = 201.371794 +The total amount of wall time = 197.631271 -Test 083 fv3_rrfs_v1beta_debug PASS +Test 073 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_rrfs_v1alpha_debug -Checking test 084 fv3_rrfs_v1alpha_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_rrfs_v1alpha_debug +Checking test 074 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3233,14 +2480,14 @@ Checking test 084 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.103610 +The total amount of wall time = 196.962477 -Test 084 fv3_rrfs_v1alpha_debug PASS +Test 074 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 085 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 075 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 @@ -3304,14 +2551,14 @@ Checking test 085 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 = 235.255803 +The total amount of wall time = 211.497681 -Test 085 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 075 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 086 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 076 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3325,198 +2572,213 @@ Checking test 086 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.500228 +The total amount of wall time = 376.622607 -Test 086 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 076 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_control_cfsr -Checking test 087 datm_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/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 -The total amount of wall time = 96.051014 +The total amount of wall time = 130.443000 -Test 087 datm_control_cfsr PASS +Test 077 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_restart_cfsr -Checking test 088 datm_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/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 -The total amount of wall time = 58.541889 +The total amount of wall time = 86.346082 -Test 088 datm_restart_cfsr PASS +Test 078 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_control_gefs -Checking test 089 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/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 -The total amount of wall time = 130.640458 +The total amount of wall time = 126.918142 -Test 089 datm_control_gefs PASS +Test 079 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_bulk_cfsr -Checking test 090 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/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 -The total amount of wall time = 96.460601 +The total amount of wall time = 127.704211 -Test 090 datm_bulk_cfsr PASS +Test 080 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_bulk_gefs -Checking test 091 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/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 -The total amount of wall time = 119.142165 +The total amount of wall time = 122.214853 -Test 091 datm_bulk_gefs PASS +Test 081 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_mx025_gefs -Checking test 092 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_mx025_gefs +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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 373.257965 +The total amount of wall time = 387.549487 -Test 092 datm_mx025_gefs PASS +Test 082 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_debug_cfsr -Checking test 093 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_debug_cfsr +Checking test 083 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 = 221.822950 +The total amount of wall time = 249.398656 -Test 093 datm_debug_cfsr PASS +Test 083 datm_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_control_cfsr -Checking test 094 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_control_cfsr +Checking test 084 datm_cdeps_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 = 153.392834 +The total amount of wall time = 156.614936 -Test 094 datm_cdeps_control_cfsr PASS +Test 084 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_restart_cfsr -Checking test 095 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_restart_cfsr +Checking test 085 datm_cdeps_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 = 88.712105 +The total amount of wall time = 90.478460 -Test 095 datm_cdeps_restart_cfsr PASS +Test 085 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_control_gefs -Checking test 096 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_control_gefs +Checking test 086 datm_cdeps_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 = 145.472447 +The total amount of wall time = 151.019093 -Test 096 datm_cdeps_control_gefs PASS +Test 086 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_bulk_cfsr -Checking test 097 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_bulk_cfsr +Checking test 087 datm_cdeps_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 = 150.483165 +The total amount of wall time = 154.492772 -Test 097 datm_cdeps_bulk_cfsr PASS +Test 087 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_bulk_gefs -Checking test 098 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_bulk_gefs +Checking test 088 datm_cdeps_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 = 150.562322 +The total amount of wall time = 173.392805 -Test 098 datm_cdeps_bulk_gefs PASS +Test 088 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_mx025_gefs -Checking test 099 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_mx025_cfsr +Checking test 089 datm_cdeps_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_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + +The total amount of wall time = 386.095533 + +Test 089 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_mx025_gefs +Checking test 090 datm_cdeps_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-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 398.698370 +The total amount of wall time = 354.907687 -Test 099 datm_cdeps_mx025_gefs PASS +Test 090 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_multiple_files_cfsr -Checking test 100 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_multiple_files_cfsr +Checking test 091 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 150.124154 +The total amount of wall time = 149.393941 -Test 100 datm_cdeps_multiple_files_cfsr PASS +Test 091 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/datm_cdeps_debug_cfsr -Checking test 101 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/datm_cdeps_debug_cfsr +Checking test 092 datm_cdeps_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 = 360.472561 +The total amount of wall time = 359.087472 -Test 101 datm_cdeps_debug_cfsr PASS +Test 092 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_42996/control_atmwav -Checking test 102 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Minsuk.Ji/FV3_RT/rt_43997/control_atmwav +Checking test 093 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3558,11 +2820,11 @@ Checking test 102 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 347.715772 +The total amount of wall time = 370.619214 -Test 102 control_atmwav PASS +Test 093 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 2 16:40:19 EDT 2021 -Elapsed time: 01h:22m:30s. Have a nice day! +Tue Jul 20 18:03:31 EDT 2021 +Elapsed time: 01h:01m:33s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 51f007415c..dc1abd49b7 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,17 +1,17 @@ -Wed Jun 2 22:31:35 UTC 2021 +Tue Jul 20 17:26:17 UTC 2021 Start Regression test -Compile 001 elapsed time 214 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 194 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 003 elapsed time 207 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 004 elapsed time 241 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 005 elapsed time 86 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 006 elapsed time 223 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 007 elapsed time 98 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y -Compile 008 elapsed time 112 seconds. APP=NG-GODAS-NEMSDATM - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control +Compile 001 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 169 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 86 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 196 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 101 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 008 elapsed time 93 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1067.397411 + 0: The total amount of wall time = 813.454193 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.323260 + 0: The total amount of wall time = 389.984853 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 642.655983 + 0: The total amount of wall time = 644.041340 Test 003 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1432.320898 + 0: The total amount of wall time = 1416.503782 Test 004 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 886.893983 + 0: The total amount of wall time = 855.870922 Test 005 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1154.465647 + 0: The total amount of wall time = 1000.511126 Test 006 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 995.896112 + 0: The total amount of wall time = 988.521901 Test 007 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 980.293681 + 0: The total amount of wall time = 928.011740 Test 008 control_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 867.811626 + 0: The total amount of wall time = 824.950588 Test 009 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1095.386519 + 0: The total amount of wall time = 1063.742437 Test 010 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.523130 + 0: The total amount of wall time = 385.124143 Test 011 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,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 = 405.856902 + 0: The total amount of wall time = 391.545270 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/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 @@ -526,13 +526,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 = 636.563975 + 0: The total amount of wall time = 630.820082 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/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 @@ -547,41 +547,54 @@ 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 = 467.172745 + 0: The total amount of wall time = 439.485763 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_debug Checking test 015 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.791555 + 0: The total amount of wall time = 98.996290 Test 015 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/regional_control_debug -Checking test 016 regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_diag_debug +Checking test 016 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 124.357519 + +Test 016 control_diag_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/regional_control_debug +Checking test 017 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 = 121.741082 + 0: The total amount of wall time = 120.411104 -Test 016 regional_control_debug PASS +Test 017 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_rrfs_v1alpha_debug -Checking test 017 fv3_rrfs_v1alpha_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/fv3_rrfs_v1alpha_debug +Checking test 018 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -645,14 +658,14 @@ Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 121.186775 + 0: The total amount of wall time = 118.446626 -Test 017 fv3_rrfs_v1alpha_debug PASS +Test 018 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_rrfs_v1beta_debug -Checking test 018 fv3_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/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 @@ -716,14 +729,14 @@ Checking test 018 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.309206 + 0: The total amount of wall time = 116.374783 -Test 018 fv3_rrfs_v1beta_debug PASS +Test 019 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_gsd_debug -Checking test 019 fv3_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/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 @@ -787,79 +800,125 @@ Checking test 019 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 = 127.531276 + 0: The total amount of wall time = 146.575209 + +Test 020 fv3_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/fv3_gsd_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/fv3_gsd_diag_debug +Checking test 021 fv3_gsd_diag_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + + 0: The total amount of wall time = 412.513173 + +Test 021 fv3_gsd_diag_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_thompson_debug +Checking test 022 control_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 113.021419 -Test 019 fv3_gsd_debug PASS +Test 022 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_thompson_debug -Checking test 020 control_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_thompson_no_aero_debug +Checking test 023 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.661647 + 0: The total amount of wall time = 111.028827 -Test 020 control_thompson_debug PASS +Test 023 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_thompson_no_aero_debug -Checking test 021 control_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_thompson_extdiag_debug +Checking test 024 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.663098 + 0: The total amount of wall time = 131.406916 -Test 021 control_thompson_no_aero_debug PASS +Test 024 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_rrtmgp_debug -Checking test 022 control_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_rrtmgp_debug +Checking test 025 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.107678 + 0: The total amount of wall time = 105.307553 -Test 022 control_rrtmgp_debug PASS +Test 025 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_ugwpv1_debug -Checking test 023 control_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_ugwpv1_debug +Checking test 026 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 132.672088 + 0: The total amount of wall time = 105.077825 -Test 023 control_ugwpv1_debug PASS +Test 026 control_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/control_ras_debug -Checking test 024 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/control_ras_debug +Checking test 027 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.899954 + 0: The total amount of wall time = 100.028609 -Test 024 control_ras_debug PASS +Test 027 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/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 @@ -923,14 +982,14 @@ Checking test 025 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.996410 + 0: The total amount of wall time = 133.134207 -Test 025 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-20210528/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_166549/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/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 @@ -944,11 +1003,123 @@ Checking test 026 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 = 258.200915 + 0: The total amount of wall time = 238.819609 + +Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/cpld_control +Checking test 030 cpld_control results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.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/MOM.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 = 621.903478 + +Test 030 cpld_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/GNU/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_139929/cpld_debug +Checking test 031 cpld_debug results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.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/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 = 334.551572 -Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 031 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 2 23:57:03 UTC 2021 -Elapsed time: 01h:25m:28s. Have a nice day! +Tue Jul 20 18:00:05 UTC 2021 +Elapsed time: 00h:33m:48s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index d459d52258..a9fae9d148 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,26 +1,27 @@ -Wed Jun 2 22:47:17 UTC 2021 +Tue Jul 20 22:35:55 UTC 2021 Start Regression test -Compile 001 elapsed time 614 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 647 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp -Compile 003 elapsed time 231 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 571 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 604 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 553 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 604 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 757 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 193 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 280 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 183 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 177 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 182 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 83 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 187 seconds. APP=NG-GODAS -Compile 016 elapsed time 122 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 618 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_control +Compile 001 elapsed time 772 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 631 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 177 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 178 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 246 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 173 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 101 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 171 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 97 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 533 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 544 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +71,13 @@ Checking test 001 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 = 159.089067 + 0: The total amount of wall time = 87.865189 Test 001 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,14 +127,14 @@ Checking test 002 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 = 210.852526 + 0: The total amount of wall time = 50.853508 Test 002 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_controlfrac -Checking test 003 cpld_controlfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_2threads +Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -182,14 +183,14 @@ Checking test 003 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 = 228.072074 + 0: The total amount of wall time = 92.556687 -Test 003 cpld_controlfrac PASS +Test 003 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restartfrac -Checking test 004 cpld_restartfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_decomp +Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -238,14 +239,14 @@ Checking test 004 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 = 159.960982 + 0: The total amount of wall time = 93.355788 -Test 004 cpld_restartfrac PASS +Test 004 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_2threads -Checking test 005 cpld_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_ca +Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -294,238 +295,14 @@ Checking test 005 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 = 198.487162 + 0: The total amount of wall time = 83.632044 -Test 005 cpld_2threads PASS +Test 005 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_decomp -Checking test 006 cpld_decomp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 161.041212 - -Test 006 cpld_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_ca -Checking test 007 cpld_ca results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 140.174553 - -Test 007 cpld_ca PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_control_c192 -Checking test 008 cpld_control_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 992.598529 - -Test 008 cpld_control_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restart_c192 -Checking test 009 cpld_restart_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 265.049395 - -Test 009 cpld_restart_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_controlfrac_c192 -Checking test 010 cpld_controlfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_control_c192 +Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK Comparing sfcf048.tile3.nc .........OK @@ -574,495 +351,26 @@ Checking test 010 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 = 558.098524 + 0: The total amount of wall time = 401.297176 -Test 010 cpld_controlfrac_c192 PASS +Test 006 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restartfrac_c192 -Checking test 011 cpld_restartfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_restart_c192 +Checking test 007 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 262.121590 - -Test 011 cpld_restartfrac_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_control_c384 -Checking test 012 cpld_control_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 1790.517563 - -Test 012 cpld_control_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restart_c384 -Checking test 013 cpld_restart_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 694.047520 - -Test 013 cpld_restart_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_controlfrac_c384 -Checking test 014 cpld_controlfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 1612.351750 - -Test 014 cpld_controlfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restartfrac_c384 -Checking test 015 cpld_restartfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 683.402848 - -Test 015 cpld_restartfrac_c384 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmark -Checking test 016 cpld_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 1263.278196 - -Test 016 cpld_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restart_bmark -Checking test 017 cpld_restart_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 459.569637 - -Test 017 cpld_restart_bmark PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmarkfrac -Checking test 018 cpld_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 1393.425705 - -Test 018 cpld_bmarkfrac PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restart_bmarkfrac -Checking test 019 cpld_restart_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1096,22 +404,29 @@ Checking test 019 cpld_restart_bmarkfrac 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 - - 0: The total amount of wall time = 449.041561 - -Test 019 cpld_restart_bmarkfrac PASS - + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmarkfrac_v16 -Checking test 020 cpld_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK + 0: The total amount of wall time = 261.553972 + +Test 007 cpld_restart_c192 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_control_c384 +Checking test 008 cpld_control_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1148,19 +463,29 @@ Checking test 020 cpld_bmarkfrac_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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1073.920075 - -Test 020 cpld_bmarkfrac_v16 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmarkfrac_v16_nsst -Checking test 021 cpld_bmarkfrac_v16_nsst results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK + + 0: The total amount of wall time = 745.597268 + +Test 008 cpld_control_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_restart_c384 +Checking test 009 cpld_restart_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1197,17 +522,17 @@ Checking test 021 cpld_bmarkfrac_v16_nsst 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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 1071.655310 + 0: The total amount of wall time = 402.737893 -Test 021 cpld_bmarkfrac_v16_nsst PASS +Test 009 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_restart_bmarkfrac_v16 -Checking test 022 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_bmark_v16 +Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK @@ -1249,29 +574,16 @@ Checking test 022 cpld_restart_bmarkfrac_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 = 425.057299 + 0: The total amount of wall time = 578.395152 -Test 022 cpld_restart_bmarkfrac_v16 PASS +Test 010 cpld_bmark_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmark_wave -Checking test 023 cpld_bmark_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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-20210720/INTEL/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_restart_bmark_v16 +Checking test 011 cpld_restart_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1308,32 +620,19 @@ Checking test 023 cpld_bmark_wave 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 + 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 = 1081.394925 + 0: The total amount of wall time = 347.776028 -Test 023 cpld_bmark_wave PASS +Test 011 cpld_restart_bmark_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmarkfrac_wave -Checking test 024 cpld_bmarkfrac_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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-20210720/INTEL/cpld_bmark_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_bmark_v16_nsst +Checking test 012 cpld_bmark_v16_nsst results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1370,17 +669,17 @@ Checking test 024 cpld_bmarkfrac_wave 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 + 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 = 1038.255849 + 0: The total amount of wall time = 604.149031 -Test 024 cpld_bmarkfrac_wave PASS +Test 012 cpld_bmark_v16_nsst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmarkfrac_wave_v16 -Checking test 025 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_bmark_wave_v16 +Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1424,14 +723,14 @@ Checking test 025 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 = 882.672327 + 0: The total amount of wall time = 651.151707 -Test 025 cpld_bmarkfrac_wave_v16 PASS +Test 013 cpld_bmark_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_bmarkfrac_wave_v16_noahmp -Checking test 026 cpld_bmarkfrac_wave_v16_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16_p7b +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_bmark_wave_v16_p7b +Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1475,14 +774,14 @@ Checking test 026 cpld_bmarkfrac_wave_v16_noahmp 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 = 944.388453 + 0: The total amount of wall time = 673.983045 -Test 026 cpld_bmarkfrac_wave_v16_noahmp PASS +Test 014 cpld_bmark_wave_v16_p7b PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_control_wave -Checking test 027 cpld_control_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_control_wave +Checking test 015 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1534,70 +833,14 @@ Checking test 027 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 = 284.205505 - -Test 027 cpld_control_wave PASS - + 0: The total amount of wall time = 98.245648 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_debug -Checking test 028 cpld_debug results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 310.307362 +Test 015 cpld_control_wave PASS -Test 028 cpld_debug PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/cpld_debugfrac -Checking test 029 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/cpld_debug +Checking test 016 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1646,14 +889,14 @@ Checking test 029 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 = 365.234172 + 0: The total amount of wall time = 294.635866 -Test 029 cpld_debugfrac PASS +Test 016 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control -Checking test 030 control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control +Checking test 017 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1695,14 +938,14 @@ Checking test 030 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.233742 + 0: The total amount of wall time = 174.424140 -Test 030 control PASS +Test 017 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_decomp -Checking test 031 control_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_decomp +Checking test 018 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1744,14 +987,14 @@ Checking test 031 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.648987 + 0: The total amount of wall time = 155.020443 -Test 031 control_decomp PASS +Test 018 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_2threads -Checking test 032 control_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1793,14 +1036,14 @@ Checking test 032 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.012582 + 0: The total amount of wall time = 160.408814 -Test 032 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_restart -Checking test 033 control_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1838,14 +1081,14 @@ Checking test 033 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 63.899376 + 0: The total amount of wall time = 63.219521 -Test 033 control_restart PASS +Test 020 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_CubedSphereGrid -Checking test 034 control_CubedSphereGrid results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1871,14 +1114,14 @@ Checking test 034 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 180.671800 + 0: The total amount of wall time = 120.735610 -Test 034 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_wrtGauss_netcdf_parallel -Checking test 035 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1888,14 +1131,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 229.185771 + 0: The total amount of wall time = 185.949131 -Test 035 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_c192 -Checking test 036 control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1905,14 +1148,14 @@ Checking test 036 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 664.679399 + 0: The total amount of wall time = 459.480294 -Test 036 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_c384 -Checking test 037 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1922,14 +1165,14 @@ Checking test 037 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1156.332869 + 0: The total amount of wall time = 774.769032 -Test 037 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_c384gdas -Checking test 038 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1971,14 +1214,14 @@ Checking test 038 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 771.266042 + 0: The total amount of wall time = 651.156376 -Test 038 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_stochy -Checking test 039 control_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1988,14 +1231,14 @@ Checking test 039 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 135.466270 + 0: The total amount of wall time = 111.351505 -Test 039 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_ca -Checking test 040 control_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ca +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_ca +Checking test 027 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2005,14 +1248,14 @@ Checking test 040 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.969027 + 0: The total amount of wall time = 105.296438 -Test 040 control_ca PASS +Test 027 control_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_lndp -Checking test 041 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2022,14 +1265,31 @@ Checking test 041 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.751443 + 0: The total amount of wall time = 123.715981 + +Test 028 control_lndp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_lheatstrg +Checking test 029 control_lheatstrg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 154.277090 -Test 041 control_lndp PASS +Test 029 control_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_lheatstrg -Checking test 042 control_lheatstrg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lseaspray +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_lseaspray +Checking test 030 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2039,14 +1299,14 @@ Checking test 042 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.065052 + 0: The total amount of wall time = 160.674123 -Test 042 control_lheatstrg PASS +Test 030 control_lseaspray PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_merra2 -Checking test 043 control_merra2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_merra2 +Checking test 031 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2056,14 +1316,14 @@ Checking test 043 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 318.862131 + 0: The total amount of wall time = 177.205314 -Test 043 control_merra2 PASS +Test 031 control_merra2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_rrtmgp -Checking test 044 control_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_rrtmgp +Checking test 032 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2073,14 +1333,14 @@ Checking test 044 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 348.895512 + 0: The total amount of wall time = 199.317722 -Test 044 control_rrtmgp PASS +Test 032 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_csawmg -Checking test 045 control_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_csawmg +Checking test 033 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2090,14 +1350,14 @@ Checking test 045 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 331.868127 + 0: The total amount of wall time = 258.059639 -Test 045 control_csawmg PASS +Test 033 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_csawmgt -Checking test 046 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_csawmgt +Checking test 034 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2107,14 +1367,14 @@ Checking test 046 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 313.913591 + 0: The total amount of wall time = 326.998942 -Test 046 control_csawmgt PASS +Test 034 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_flake -Checking test 047 control_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_flake +Checking test 035 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2124,14 +1384,14 @@ Checking test 047 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 472.768847 + 0: The total amount of wall time = 221.688670 -Test 047 control_flake PASS +Test 035 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_ugwpv1 -Checking test 048 control_ugwpv1 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_ugwpv1 +Checking test 036 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2141,14 +1401,14 @@ Checking test 048 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.509335 + 0: The total amount of wall time = 196.964388 -Test 048 control_ugwpv1 PASS +Test 036 control_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_ras -Checking test 049 control_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_ras +Checking test 037 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2158,14 +1418,14 @@ Checking test 049 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 173.324856 + 0: The total amount of wall time = 177.321540 -Test 049 control_ras PASS +Test 037 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_thompson -Checking test 050 control_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_thompson +Checking test 038 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2175,14 +1435,14 @@ Checking test 050 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.908607 + 0: The total amount of wall time = 198.905018 -Test 050 control_thompson PASS +Test 038 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_thompson_no_aero -Checking test 051 control_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_thompson_no_aero +Checking test 039 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2192,14 +1452,14 @@ Checking test 051 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.784862 + 0: The total amount of wall time = 202.726164 -Test 051 control_thompson_no_aero PASS +Test 039 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_noahmp -Checking test 052 control_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_noahmp +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_noahmp +Checking test 040 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2209,40 +1469,40 @@ Checking test 052 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.891417 + 0: The total amount of wall time = 189.158825 -Test 052 control_noahmp PASS +Test 040 control_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_control -Checking test 053 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_control +Checking test 041 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 = 336.749407 + 0: The total amount of wall time = 294.521105 -Test 053 regional_control PASS +Test 041 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_restart -Checking test 054 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_restart +Checking test 042 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 = 156.415304 + 0: The total amount of wall time = 154.084005 -Test 054 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_quilt -Checking test 055 regional_quilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_quilt +Checking test 043 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2252,14 +1512,14 @@ Checking test 055 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 290.002637 + 0: The total amount of wall time = 303.733928 -Test 055 regional_quilt PASS +Test 043 regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_quilt_2threads -Checking test 056 regional_quilt_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_quilt_2threads +Checking test 044 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2269,14 +1529,14 @@ Checking test 056 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 209.785355 + 0: The total amount of wall time = 209.481492 -Test 056 regional_quilt_2threads PASS +Test 044 regional_quilt_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_quilt_hafs -Checking test 057 regional_quilt_hafs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_quilt_hafs +Checking test 045 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2284,28 +1544,28 @@ Checking test 057 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.337105 + 0: The total amount of wall time = 298.325485 -Test 057 regional_quilt_hafs PASS +Test 045 regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_quilt_netcdf_parallel -Checking test 058 regional_quilt_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_quilt_netcdf_parallel +Checking test 046 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 .........OK + Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.468313 + 0: The total amount of wall time = 294.774787 -Test 058 regional_quilt_netcdf_parallel PASS +Test 046 regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_quilt_RRTMGP -Checking test 059 regional_quilt_RRTMGP results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_quilt_RRTMGP +Checking test 047 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2315,14 +1575,14 @@ Checking test 059 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 381.032873 + 0: The total amount of wall time = 380.176264 -Test 059 regional_quilt_RRTMGP PASS +Test 047 regional_quilt_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_gsd -Checking test 060 fv3_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_gsd +Checking test 048 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2410,14 +1670,14 @@ Checking test 060 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.586437 + 0: The total amount of wall time = 215.853265 -Test 060 fv3_gsd PASS +Test 048 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_rrfs_v1alpha -Checking test 061 fv3_rrfs_v1alpha results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_rrfs_v1alpha +Checking test 049 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2481,14 +1741,14 @@ Checking test 061 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.992278 + 0: The total amount of wall time = 86.129235 -Test 061 fv3_rrfs_v1alpha PASS +Test 049 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_rap -Checking test 062 fv3_rap results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_rap +Checking test 050 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2552,14 +1812,14 @@ Checking test 062 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.441981 + 0: The total amount of wall time = 84.939063 -Test 062 fv3_rap PASS +Test 050 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_hrrr -Checking test 063 fv3_hrrr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_hrrr +Checking test 051 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2623,14 +1883,14 @@ Checking test 063 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.210342 + 0: The total amount of wall time = 85.140722 -Test 063 fv3_hrrr PASS +Test 051 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_rrfs_v1beta -Checking test 064 fv3_rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_rrfs_v1beta +Checking test 052 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2694,14 +1954,14 @@ Checking test 064 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 = 87.618020 + 0: The total amount of wall time = 86.693745 -Test 064 fv3_rrfs_v1beta PASS +Test 052 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_HAFS_v0_hwrf_thompson -Checking test 065 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/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 @@ -2765,14 +2025,14 @@ Checking test 065 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 = 144.491482 + 0: The total amount of wall time = 141.790287 -Test 065 fv3_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/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 @@ -2786,40 +2046,40 @@ Checking test 066 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.310395 + 0: The total amount of wall time = 286.093610 -Test 066 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_debug -Checking test 067 control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_debug +Checking test 055 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.509015 + 0: The total amount of wall time = 141.433084 -Test 067 control_debug PASS +Test 055 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_2threads_debug -Checking test 068 control_2threads_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_2threads_debug +Checking test 056 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.976581 + 0: The total amount of wall time = 211.280224 -Test 068 control_2threads_debug PASS +Test 056 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_CubedSphereGrid_debug -Checking test 069 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_CubedSphereGrid_debug +Checking test 057 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2845,184 +2105,210 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 164.837140 + 0: The total amount of wall time = 159.509621 -Test 069 control_CubedSphereGrid_debug PASS +Test 057 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_wrtGauss_netcdf_parallel_debug -Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_wrtGauss_netcdf_parallel_debug +Checking test 058 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.940074 + 0: The total amount of wall time = 162.390774 + +Test 058 control_wrtGauss_netcdf_parallel_debug PASS + -Test 070 control_wrtGauss_netcdf_parallel_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_stochy_debug +Checking test 059 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 165.759091 + +Test 059 control_stochy_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_lndp_debug +Checking test 060 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 157.312290 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_stochy_debug -Checking test 071 control_stochy_debug results .... +Test 060 control_lndp_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_lheatstrg_debug +Checking test 061 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.966066 + 0: The total amount of wall time = 159.083194 -Test 071 control_stochy_debug PASS +Test 061 control_lheatstrg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_lndp_debug -Checking test 072 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_merra2_debug +Checking test 062 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.209637 + 0: The total amount of wall time = 199.160250 -Test 072 control_lndp_debug PASS +Test 062 control_merra2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_lheatstrg_debug -Checking test 073 control_lheatstrg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_rrtmgp_debug +Checking test 063 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.338995 + 0: The total amount of wall time = 168.707416 -Test 073 control_lheatstrg_debug PASS +Test 063 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_merra2_debug -Checking test 074 control_merra2_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_csawmg_debug +Checking test 064 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 414.059038 + 0: The total amount of wall time = 243.687754 -Test 074 control_merra2_debug PASS +Test 064 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_rrtmgp_debug -Checking test 075 control_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_csawmgt_debug +Checking test 065 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.753996 + 0: The total amount of wall time = 265.364579 -Test 075 control_rrtmgp_debug PASS +Test 065 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_csawmg_debug -Checking test 076 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_ugwpv1_debug +Checking test 066 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.011759 + 0: The total amount of wall time = 152.937437 -Test 076 control_csawmg_debug PASS +Test 066 control_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_csawmgt_debug -Checking test 077 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_ras_debug +Checking test 067 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.126805 + 0: The total amount of wall time = 144.894997 -Test 077 control_csawmgt_debug PASS +Test 067 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_ugwpv1_debug -Checking test 078 control_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_diag_debug +Checking test 068 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.329498 + 0: The total amount of wall time = 160.155690 -Test 078 control_ugwpv1_debug PASS +Test 068 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_ras_debug -Checking test 079 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_thompson_debug +Checking test 069 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.708104 + 0: The total amount of wall time = 170.588029 -Test 079 control_ras_debug PASS +Test 069 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_thompson_debug -Checking test 080 control_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_thompson_no_aero_debug +Checking test 070 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.883065 + 0: The total amount of wall time = 157.866259 -Test 080 control_thompson_debug PASS +Test 070 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_thompson_no_aero_debug -Checking test 081 control_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_thompson_extdiag_debug +Checking test 071 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 182.042032 + 0: The total amount of wall time = 198.035553 -Test 081 control_thompson_no_aero_debug PASS +Test 071 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/regional_control_debug -Checking test 082 regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/regional_control_debug +Checking test 072 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 = 223.375194 + 0: The total amount of wall time = 227.787586 -Test 082 regional_control_debug PASS +Test 072 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_gsd_debug -Checking test 083 fv3_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_gsd_debug +Checking test 073 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3086,85 +2372,47 @@ Checking test 083 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 = 201.560103 + 0: The total amount of wall time = 241.480237 -Test 083 fv3_gsd_debug PASS +Test 073 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_gsd_diag3d_debug -Checking test 084 fv3_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 = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_gsd_diag_debug +Checking test 074 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK Comparing sfcf000.tile4.nc .........OK Comparing sfcf000.tile5.nc .........OK Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK Comparing atmf000.tile1.nc .........OK Comparing atmf000.tile2.nc .........OK Comparing atmf000.tile3.nc .........OK Comparing atmf000.tile4.nc .........OK Comparing atmf000.tile5.nc .........OK Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 244.846860 + 0: The total amount of wall time = 420.917070 -Test 084 fv3_gsd_diag3d_debug PASS +Test 074 fv3_gsd_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_rrfs_v1beta_debug -Checking test 085 fv3_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_rrfs_v1beta_debug +Checking test 075 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3228,14 +2476,14 @@ Checking test 085 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 = 193.523522 + 0: The total amount of wall time = 190.710207 -Test 085 fv3_rrfs_v1beta_debug PASS +Test 075 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_rrfs_v1alpha_debug -Checking test 086 fv3_rrfs_v1alpha_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_rrfs_v1alpha_debug +Checking test 076 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3299,14 +2547,14 @@ Checking test 086 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.412669 + 0: The total amount of wall time = 188.614865 -Test 086 fv3_rrfs_v1alpha_debug PASS +Test 076 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 077 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 @@ -3370,14 +2618,14 @@ Checking test 087 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.026023 + 0: The total amount of wall time = 195.793333 -Test 087 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 077 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 078 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3391,228 +2639,228 @@ Checking test 088 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 = 394.734522 + 0: The total amount of wall time = 391.953811 -Test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 078 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_control_cfsr -Checking test 089 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_control_cfsr +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 - 0: The total amount of wall time = 96.881742 + 0: The total amount of wall time = 94.748191 -Test 089 datm_control_cfsr PASS +Test 079 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_restart_cfsr -Checking test 090 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_restart_cfsr +Checking test 080 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.899473 + 0: The total amount of wall time = 62.242765 -Test 090 datm_restart_cfsr PASS +Test 080 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_control_gefs -Checking test 091 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_control_gefs +Checking test 081 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.452566 + 0: The total amount of wall time = 88.217811 -Test 091 datm_control_gefs PASS +Test 081 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_bulk_cfsr -Checking test 092 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_bulk_cfsr +Checking test 082 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.635955 + 0: The total amount of wall time = 90.907016 -Test 092 datm_bulk_cfsr PASS +Test 082 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_bulk_gefs -Checking test 093 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_bulk_gefs +Checking test 083 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 = 95.990569 + 0: The total amount of wall time = 87.411633 -Test 093 datm_bulk_gefs PASS +Test 083 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_mx025_cfsr -Checking test 094 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_mx025_cfsr +Checking test 084 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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 345.794897 + 0: The total amount of wall time = 308.482202 -Test 094 datm_mx025_cfsr PASS +Test 084 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_mx025_gefs -Checking test 095 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_mx025_gefs +Checking test 085 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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 345.819447 + 0: The total amount of wall time = 310.065048 -Test 095 datm_mx025_gefs PASS +Test 085 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_debug_cfsr -Checking test 096 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_debug_cfsr +Checking test 086 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 = 260.501592 + 0: The total amount of wall time = 253.903477 -Test 096 datm_debug_cfsr PASS +Test 086 datm_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_control_cfsr -Checking test 097 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_control_cfsr +Checking test 087 datm_cdeps_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 = 144.405877 + 0: The total amount of wall time = 151.027709 -Test 097 datm_cdeps_control_cfsr PASS +Test 087 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_restart_cfsr -Checking test 098 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_restart_cfsr +Checking test 088 datm_cdeps_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 = 94.068995 + 0: The total amount of wall time = 95.706605 -Test 098 datm_cdeps_restart_cfsr PASS +Test 088 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_control_gefs -Checking test 099 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_control_gefs +Checking test 089 datm_cdeps_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 = 156.876148 + 0: The total amount of wall time = 145.872253 -Test 099 datm_cdeps_control_gefs PASS +Test 089 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_bulk_cfsr -Checking test 100 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_bulk_cfsr +Checking test 090 datm_cdeps_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 = 146.008965 + 0: The total amount of wall time = 145.714593 -Test 100 datm_cdeps_bulk_cfsr PASS +Test 090 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_bulk_gefs -Checking test 101 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_bulk_gefs +Checking test 091 datm_cdeps_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 = 140.105784 + 0: The total amount of wall time = 142.978109 -Test 101 datm_cdeps_bulk_gefs PASS +Test 091 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_mx025_cfsr -Checking test 102 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_mx025_cfsr +Checking test 092 datm_cdeps_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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 362.446544 + 0: The total amount of wall time = 314.905192 -Test 102 datm_cdeps_mx025_cfsr PASS +Test 092 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_mx025_gefs -Checking test 103 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_mx025_gefs +Checking test 093 datm_cdeps_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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 344.531611 + 0: The total amount of wall time = 304.552338 -Test 103 datm_cdeps_mx025_gefs PASS +Test 093 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_multiple_files_cfsr -Checking test 104 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_multiple_files_cfsr +Checking test 094 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.674925 + 0: The total amount of wall time = 147.529146 -Test 104 datm_cdeps_multiple_files_cfsr PASS +Test 094 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/datm_cdeps_debug_cfsr -Checking test 105 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/datm_cdeps_debug_cfsr +Checking test 095 datm_cdeps_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 = 435.397969 + 0: The total amount of wall time = 447.900251 -Test 105 datm_cdeps_debug_cfsr PASS +Test 095 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_63972/control_atmwav -Checking test 106 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_atmwav +Checking test 096 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3654,11 +2902,64 @@ Checking test 106 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.529458 + 0: The total amount of wall time = 323.416671 + +Test 096 control_atmwav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_197937/control_atm_aerosols +Checking test 097 control_atm_aerosols results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK + Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.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 = 293.596416 -Test 106 control_atmwav PASS +Test 097 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 3 00:20:41 UTC 2021 -Elapsed time: 01h:33m:24s. Have a nice day! +Tue Jul 20 23:32:45 UTC 2021 +Elapsed time: 00h:56m:50s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index a0962f58ed..c83aa1b00d 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,26 +1,26 @@ -Wed Jun 2 19:16:21 GMT 2021 +Wed Jul 21 11:56:55 GMT 2021 Start Regression test -Compile 001 elapsed time 2414 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 2440 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp -Compile 003 elapsed time 242 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 2232 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 2366 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 2230 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 2253 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 2286 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 217 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 213 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 216 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 216 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 262 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 135 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 285 seconds. APP=NG-GODAS -Compile 016 elapsed time 145 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 2266 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_control +Compile 001 elapsed time 2459 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2520 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 227 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 2287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 2412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 2281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 007 elapsed time 2286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 2375 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 201 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 260 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 014 elapsed time 140 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 284 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 016 elapsed time 139 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 2324 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 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 = 131.460838 + 0: The total amount of wall time = 142.343105 Test 001 cpld_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,14 +126,14 @@ Checking test 002 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 = 91.063443 + 0: The total amount of wall time = 70.547804 Test 002 cpld_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_controlfrac -Checking test 003 cpld_controlfrac results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_2threads +Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -182,14 +182,14 @@ Checking test 003 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 = 129.561931 + 0: The total amount of wall time = 564.421988 -Test 003 cpld_controlfrac PASS +Test 003 cpld_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restartfrac -Checking test 004 cpld_restartfrac results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_ca +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_ca +Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -238,716 +238,26 @@ Checking test 004 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 = 82.866852 + 0: The total amount of wall time = 129.529663 -Test 004 cpld_restartfrac PASS +Test 004 cpld_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_2threads -Checking test 005 cpld_2threads results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 548.118731 - -Test 005 cpld_2threads PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_ca -Checking test 006 cpld_ca results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 127.282142 - -Test 006 cpld_ca PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_control_c192 -Checking test 007 cpld_control_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 538.309638 - -Test 007 cpld_control_c192 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restart_c192 -Checking test 008 cpld_restart_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 386.598720 - -Test 008 cpld_restart_c192 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_controlfrac_c192 -Checking test 009 cpld_controlfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 546.157516 - -Test 009 cpld_controlfrac_c192 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restartfrac_c192 -Checking test 010 cpld_restartfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 379.087274 - -Test 010 cpld_restartfrac_c192 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_control_c384 -Checking test 011 cpld_control_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 1071.611390 - -Test 011 cpld_control_c384 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restart_c384 -Checking test 012 cpld_restart_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 585.761803 - -Test 012 cpld_restart_c384 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_controlfrac_c384 -Checking test 013 cpld_controlfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 1044.413878 - -Test 013 cpld_controlfrac_c384 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restartfrac_c384 -Checking test 014 cpld_restartfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -The total amount of wall time = 573.283833 - -Test 014 cpld_restartfrac_c384 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmark -Checking test 015 cpld_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 = 1104.853957 - -Test 015 cpld_bmark PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restart_bmark -Checking test 016 cpld_restart_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 = 649.875192 - -Test 016 cpld_restart_bmark PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmarkfrac -Checking test 017 cpld_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_control_c192 +Checking test 005 cpld_control_c192 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -981,32 +291,29 @@ Checking test 017 cpld_bmarkfrac 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 + 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 = 1099.884989 + 0: The total amount of wall time = 538.088261 -Test 017 cpld_bmarkfrac PASS +Test 005 cpld_control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restart_bmarkfrac -Checking test 018 cpld_restart_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_restart_c192 +Checking test 006 cpld_restart_c192 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1040,22 +347,29 @@ Checking test 018 cpld_restart_bmarkfrac 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 - -The total amount of wall time = 618.273780 - -Test 018 cpld_restart_bmarkfrac PASS - + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmarkfrac_v16 -Checking test 019 cpld_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK + 0: The total amount of wall time = 412.988016 + +Test 006 cpld_restart_c192 PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_control_c384 +Checking test 007 cpld_control_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1092,19 +406,29 @@ Checking test 019 cpld_bmarkfrac_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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -The total amount of wall time = 996.009092 - -Test 019 cpld_bmarkfrac_v16 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmarkfrac_v16_nsst -Checking test 020 cpld_bmarkfrac_v16_nsst results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK + + 0: The total amount of wall time = 606.967124 + +Test 007 cpld_control_c384 PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_restart_c384 +Checking test 008 cpld_restart_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1141,17 +465,17 @@ Checking test 020 cpld_bmarkfrac_v16_nsst 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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 990.135467 + 0: The total amount of wall time = 399.531544 -Test 020 cpld_bmarkfrac_v16_nsst PASS +Test 008 cpld_restart_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_restart_bmarkfrac_v16 -Checking test 021 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_bmark_v16 +Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK @@ -1193,29 +517,16 @@ Checking test 021 cpld_restart_bmarkfrac_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 = 592.506651 + 0: The total amount of wall time = 794.783115 -Test 021 cpld_restart_bmarkfrac_v16 PASS +Test 009 cpld_bmark_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmark_wave -Checking test 022 cpld_bmark_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_restart_bmark_v16 +Checking test 010 cpld_restart_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1252,32 +563,19 @@ Checking test 022 cpld_bmark_wave 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 + 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 = 1823.539232 + 0: The total amount of wall time = 437.242845 -Test 022 cpld_bmark_wave PASS +Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmarkfrac_wave -Checking test 023 cpld_bmarkfrac_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16_nsst +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_bmark_v16_nsst +Checking test 011 cpld_bmark_v16_nsst results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1314,17 +612,17 @@ Checking test 023 cpld_bmarkfrac_wave 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 + 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 = 1841.758556 + 0: The total amount of wall time = 800.330087 -Test 023 cpld_bmarkfrac_wave PASS +Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmarkfrac_wave_v16 -Checking test 024 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_bmark_wave_v16 +Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1368,14 +666,14 @@ Checking test 024 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 = 1250.655362 + 0: The total amount of wall time = 1055.986222 -Test 024 cpld_bmarkfrac_wave_v16 PASS +Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_bmarkfrac_wave_v16_noahmp -Checking test 025 cpld_bmarkfrac_wave_v16_noahmp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16_p7b +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_bmark_wave_v16_p7b +Checking test 013 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1419,14 +717,14 @@ Checking test 025 cpld_bmarkfrac_wave_v16_noahmp 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 = 1221.991800 + 0: The total amount of wall time = 1122.353837 -Test 025 cpld_bmarkfrac_wave_v16_noahmp PASS +Test 013 cpld_bmark_wave_v16_p7b PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_control_wave -Checking test 026 cpld_control_wave results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_wave +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_control_wave +Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1478,14 +776,14 @@ Checking test 026 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 1014.169274 + 0: The total amount of wall time = 1009.902691 -Test 026 cpld_control_wave PASS +Test 014 cpld_control_wave PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_debug -Checking test 027 cpld_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/cpld_debug +Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1534,26 +832,22 @@ Checking test 027 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 = 376.990889 + 0: The total amount of wall time = 354.120595 -Test 027 cpld_debug PASS +Test 015 cpld_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debugfrac -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/cpld_debugfrac -Checking test 028 cpld_debugfrac results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control +Checking test 016 control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........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 @@ -1586,18 +880,15 @@ Checking test 028 cpld_debugfrac results .... 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 -The total amount of wall time = 378.080470 + 0: The total amount of wall time = 224.252650 -Test 028 cpld_debugfrac PASS +Test 016 control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control -Checking test 029 control results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_decomp +Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1639,14 +930,14 @@ Checking test 029 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 208.209517 + 0: The total amount of wall time = 214.470011 -Test 029 control PASS +Test 017 control_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_2threads -Checking test 030 control_2threads results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_2threads +Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1688,14 +979,14 @@ Checking test 030 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 787.332497 + 0: The total amount of wall time = 783.728464 -Test 030 control_2threads PASS +Test 018 control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_restart -Checking test 031 control_restart results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_restart +Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1733,14 +1024,14 @@ Checking test 031 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 87.581193 + 0: The total amount of wall time = 87.642382 -Test 031 control_restart PASS +Test 019 control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_CubedSphereGrid -Checking test 032 control_CubedSphereGrid results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1766,14 +1057,14 @@ Checking test 032 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 163.327541 + 0: The total amount of wall time = 186.629716 -Test 032 control_CubedSphereGrid PASS +Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_wrtGauss_netcdf_parallel -Checking test 033 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1783,14 +1074,14 @@ Checking test 033 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 247.491697 + 0: The total amount of wall time = 255.950172 -Test 033 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_c192 -Checking test 034 control_c192 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1800,14 +1091,14 @@ Checking test 034 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 667.328110 + 0: The total amount of wall time = 652.878915 -Test 034 control_c192 PASS +Test 022 control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_c384 -Checking test 035 control_c384 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1817,19 +1108,19 @@ Checking test 035 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 897.511603 + 0: The total amount of wall time = 906.110234 -Test 035 control_c384 PASS +Test 023 control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_c384gdas -Checking test 036 control_c384gdas results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........NOT OK + Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK @@ -1866,14 +1157,14 @@ Checking test 036 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 797.455661 + 0: The total amount of wall time = 784.176040 -Test 036 control_c384gdas FAIL +Test 024 control_c384gdas PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_stochy -Checking test 037 control_stochy results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_stochy +Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1883,14 +1174,14 @@ Checking test 037 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 148.388053 + 0: The total amount of wall time = 147.723623 -Test 037 control_stochy PASS +Test 025 control_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_ca -Checking test 038 control_ca results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ca +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_ca +Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1900,14 +1191,14 @@ Checking test 038 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 147.992679 + 0: The total amount of wall time = 143.702073 -Test 038 control_ca PASS +Test 026 control_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_lndp -Checking test 039 control_lndp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_lndp +Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1917,14 +1208,14 @@ Checking test 039 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 163.641549 + 0: The total amount of wall time = 148.152336 -Test 039 control_lndp PASS +Test 027 control_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_lheatstrg -Checking test 040 control_lheatstrg results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_lheatstrg +Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1934,14 +1225,14 @@ Checking test 040 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 214.002869 + 0: The total amount of wall time = 226.827158 -Test 040 control_lheatstrg PASS +Test 028 control_lheatstrg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_merra2 -Checking test 041 control_merra2 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lseaspray +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_lseaspray +Checking test 029 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1951,14 +1242,14 @@ Checking test 041 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 243.785890 + 0: The total amount of wall time = 227.770352 -Test 041 control_merra2 PASS +Test 029 control_lseaspray PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_rrtmgp -Checking test 042 control_rrtmgp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_merra2 +Checking test 030 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1968,14 +1259,14 @@ Checking test 042 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 265.077012 + 0: The total amount of wall time = 249.778973 -Test 042 control_rrtmgp PASS +Test 030 control_merra2 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_csawmg -Checking test 043 control_csawmg results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_rrtmgp +Checking test 031 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1985,14 +1276,14 @@ Checking test 043 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 362.023019 + 0: The total amount of wall time = 274.207651 -Test 043 control_csawmg PASS +Test 031 control_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_csawmgt -Checking test 044 control_csawmgt results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_csawmgt +Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2002,14 +1293,14 @@ Checking test 044 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 431.677274 + 0: The total amount of wall time = 429.723936 -Test 044 control_csawmgt PASS +Test 032 control_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_flake -Checking test 045 control_flake results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_flake +Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2019,14 +1310,14 @@ Checking test 045 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 294.366162 + 0: The total amount of wall time = 293.950508 -Test 045 control_flake PASS +Test 033 control_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_ugwpv1 -Checking test 046 control_ugwpv1 results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1 +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_ugwpv1 +Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2036,14 +1327,14 @@ Checking test 046 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 272.336351 + 0: The total amount of wall time = 265.028822 -Test 046 control_ugwpv1 PASS +Test 034 control_ugwpv1 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_ras -Checking test 047 control_ras results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_ras +Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2053,14 +1344,14 @@ Checking test 047 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 242.520006 + 0: The total amount of wall time = 259.549428 -Test 047 control_ras PASS +Test 035 control_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_thompson -Checking test 048 control_thompson results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_thompson +Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2070,14 +1361,14 @@ Checking test 048 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 269.138760 + 0: The total amount of wall time = 282.362426 -Test 048 control_thompson PASS +Test 036 control_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_thompson_no_aero -Checking test 049 control_thompson_no_aero results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_thompson_no_aero +Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2087,14 +1378,14 @@ Checking test 049 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 261.438066 + 0: The total amount of wall time = 272.262896 -Test 049 control_thompson_no_aero PASS +Test 037 control_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_noahmp -Checking test 050 control_noahmp results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_noahmp +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_noahmp +Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2104,40 +1395,40 @@ Checking test 050 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 242.916172 + 0: The total amount of wall time = 254.872744 -Test 050 control_noahmp PASS +Test 038 control_noahmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/regional_control -Checking test 051 regional_control results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/regional_control +Checking test 039 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 = 416.974563 + 0: The total amount of wall time = 413.045950 -Test 051 regional_control PASS +Test 039 regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/regional_restart -Checking test 052 regional_restart results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/regional_restart +Checking test 040 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 238.579995 + 0: The total amount of wall time = 291.300351 -Test 052 regional_restart PASS +Test 040 regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/regional_quilt -Checking test 053 regional_quilt results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/regional_quilt +Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2147,14 +1438,14 @@ Checking test 053 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 413.193865 + 0: The total amount of wall time = 411.488226 -Test 053 regional_quilt PASS +Test 041 regional_quilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/regional_quilt_hafs -Checking test 054 regional_quilt_hafs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/regional_quilt_hafs +Checking test 042 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2162,45 +1453,282 @@ Checking test 054 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 410.104169 + 0: The total amount of wall time = 411.496075 -Test 054 regional_quilt_hafs PASS +Test 042 regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/regional_quilt_netcdf_parallel -Checking test 055 regional_quilt_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/regional_quilt_netcdf_parallel +Checking test 043 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 + + 0: The total amount of wall time = 410.987463 + +Test 043 regional_quilt_netcdf_parallel PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/regional_quilt_RRTMGP +Checking test 044 regional_quilt_RRTMGP results .... 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 = 588.379318 + +Test 044 regional_quilt_RRTMGP PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_gsd +Checking test 045 fv3_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 sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing sfcf027.tile1.nc .........OK + Comparing sfcf027.tile2.nc .........OK + Comparing sfcf027.tile3.nc .........OK + Comparing sfcf027.tile4.nc .........OK + Comparing sfcf027.tile5.nc .........OK + Comparing sfcf027.tile6.nc .........OK + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing atmf027.tile1.nc .........OK + Comparing atmf027.tile2.nc .........OK + Comparing atmf027.tile3.nc .........OK + Comparing atmf027.tile4.nc .........OK + Comparing atmf027.tile5.nc .........OK + Comparing atmf027.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.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 = 295.812830 + +Test 045 fv3_gsd PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_rrfs_v1alpha +Checking test 046 fv3_rrfs_v1alpha results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.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 = 415.889787 + 0: The total amount of wall time = 117.802446 -Test 055 regional_quilt_netcdf_parallel PASS +Test 046 fv3_rrfs_v1alpha PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/regional_quilt_RRTMGP -Checking test 056 regional_quilt_RRTMGP results .... - 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 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rap +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_rap +Checking test 047 fv3_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 sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.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 = 528.820251 + 0: The total amount of wall time = 117.740759 -Test 056 regional_quilt_RRTMGP PASS +Test 047 fv3_rap PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_gsd -Checking test 057 fv3_gsd results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_hrrr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_hrrr +Checking test 048 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2219,18 +1747,6 @@ Checking test 057 fv3_gsd results .... Comparing sfcf024.tile4.nc .........OK Comparing sfcf024.tile5.nc .........OK Comparing sfcf024.tile6.nc .........OK - Comparing sfcf027.tile1.nc .........OK - Comparing sfcf027.tile2.nc .........OK - Comparing sfcf027.tile3.nc .........OK - Comparing sfcf027.tile4.nc .........OK - Comparing sfcf027.tile5.nc .........OK - Comparing sfcf027.tile6.nc .........OK - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK Comparing atmf000.tile1.nc .........OK Comparing atmf000.tile2.nc .........OK Comparing atmf000.tile3.nc .........OK @@ -2243,18 +1759,6 @@ Checking test 057 fv3_gsd results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing atmf027.tile1.nc .........OK - Comparing atmf027.tile2.nc .........OK - Comparing atmf027.tile3.nc .........OK - Comparing atmf027.tile4.nc .........OK - Comparing atmf027.tile5.nc .........OK - Comparing atmf027.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -2288,14 +1792,14 @@ Checking test 057 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.899323 + 0: The total amount of wall time = 114.857945 -Test 057 fv3_gsd PASS +Test 048 fv3_hrrr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_rrfs_v1alpha -Checking test 058 fv3_rrfs_v1alpha results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_rrfs_v1beta +Checking test 049 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2359,14 +1863,14 @@ Checking test 058 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.128752 + 0: The total amount of wall time = 119.863982 -Test 058 fv3_rrfs_v1alpha PASS +Test 049 fv3_rrfs_v1beta PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_HAFS_v0_hwrf_thompson -Checking test 059 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_HAFS_v0_hwrf_thompson +Checking test 050 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2430,14 +1934,14 @@ Checking test 059 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 = 193.929720 + 0: The total amount of wall time = 193.824781 -Test 059 fv3_HAFS_v0_hwrf_thompson PASS +Test 050 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 060 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 051 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2451,40 +1955,40 @@ Checking test 060 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 = 391.169478 + 0: The total amount of wall time = 370.184156 -Test 060 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 051 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_debug -Checking test 061 control_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_debug +Checking test 052 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.029288 + 0: The total amount of wall time = 189.446796 -Test 061 control_debug PASS +Test 052 control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_2threads_debug -Checking test 062 control_2threads_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_2threads_debug +Checking test 053 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 369.361669 + 0: The total amount of wall time = 360.276780 -Test 062 control_2threads_debug PASS +Test 053 control_2threads_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_CubedSphereGrid_debug -Checking test 063 control_CubedSphereGrid_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_CubedSphereGrid_debug +Checking test 054 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2510,184 +2014,210 @@ Checking test 063 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 209.821169 + 0: The total amount of wall time = 210.045942 -Test 063 control_CubedSphereGrid_debug PASS +Test 054 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_wrtGauss_netcdf_parallel_debug -Checking test 064 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_wrtGauss_netcdf_parallel_debug +Checking test 055 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 191.769223 + +Test 055 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_stochy_debug +Checking test 056 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 217.923280 + +Test 056 control_stochy_debug PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_lndp_debug +Checking test 057 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 196.212273 + 0: The total amount of wall time = 194.231709 -Test 064 control_wrtGauss_netcdf_parallel_debug PASS +Test 057 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_stochy_debug -Checking test 065 control_stochy_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_lheatstrg_debug +Checking test 058 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 222.681319 + 0: The total amount of wall time = 187.063759 -Test 065 control_stochy_debug PASS +Test 058 control_lheatstrg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_lndp_debug -Checking test 066 control_lndp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_merra2_debug +Checking test 059 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 201.624315 + 0: The total amount of wall time = 260.455583 -Test 066 control_lndp_debug PASS +Test 059 control_merra2_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_lheatstrg_debug -Checking test 067 control_lheatstrg_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_rrtmgp_debug +Checking test 060 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.716079 + 0: The total amount of wall time = 213.081012 -Test 067 control_lheatstrg_debug PASS +Test 060 control_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_merra2_debug -Checking test 068 control_merra2_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_csawmg_debug +Checking test 061 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 240.588176 + 0: The total amount of wall time = 312.234394 -Test 068 control_merra2_debug PASS +Test 061 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_rrtmgp_debug -Checking test 069 control_rrtmgp_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_csawmgt_debug +Checking test 062 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 223.200310 + 0: The total amount of wall time = 365.691017 -Test 069 control_rrtmgp_debug PASS +Test 062 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_csawmg_debug -Checking test 070 control_csawmg_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_ugwpv1_debug +Checking test 063 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.457385 + 0: The total amount of wall time = 206.445226 -Test 070 control_csawmg_debug PASS +Test 063 control_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_csawmgt_debug -Checking test 071 control_csawmgt_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_ras_debug +Checking test 064 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 329.702665 + 0: The total amount of wall time = 197.389718 -Test 071 control_csawmgt_debug PASS +Test 064 control_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_ugwpv1_debug -Checking test 072 control_ugwpv1_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_diag_debug +Checking test 065 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 216.791102 + 0: The total amount of wall time = 203.741539 -Test 072 control_ugwpv1_debug PASS +Test 065 control_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_ras_debug -Checking test 073 control_ras_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_thompson_debug +Checking test 066 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 197.304242 + 0: The total amount of wall time = 222.883008 -Test 073 control_ras_debug PASS +Test 066 control_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_thompson_debug -Checking test 074 control_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_thompson_no_aero_debug +Checking test 067 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 225.008934 + 0: The total amount of wall time = 216.308527 -Test 074 control_thompson_debug PASS +Test 067 control_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_thompson_no_aero_debug -Checking test 075 control_thompson_no_aero_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug_extdiag +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_thompson_extdiag_debug +Checking test 068 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 217.803448 + 0: The total amount of wall time = 249.299187 -Test 075 control_thompson_no_aero_debug PASS +Test 068 control_thompson_extdiag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/regional_control_debug -Checking test 076 regional_control_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/regional_control_debug +Checking test 069 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 = 321.456342 + 0: The total amount of wall time = 333.642617 -Test 076 regional_control_debug PASS +Test 069 regional_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_gsd_debug -Checking test 077 fv3_gsd_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_gsd_debug +Checking test 070 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2751,85 +2281,47 @@ Checking test 077 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 266.696721 + 0: The total amount of wall time = 365.367932 -Test 077 fv3_gsd_debug PASS +Test 070 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_gsd_diag3d_debug -Checking test 078 fv3_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 = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_diag_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_gsd_diag_debug +Checking test 071 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK Comparing sfcf000.tile4.nc .........OK Comparing sfcf000.tile5.nc .........OK Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK Comparing atmf000.tile1.nc .........OK Comparing atmf000.tile2.nc .........OK Comparing atmf000.tile3.nc .........OK Comparing atmf000.tile4.nc .........OK Comparing atmf000.tile5.nc .........OK Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 405.449488 + 0: The total amount of wall time = 591.358934 -Test 078 fv3_gsd_diag3d_debug PASS +Test 071 fv3_gsd_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_rrfs_v1beta_debug -Checking test 079 fv3_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/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 @@ -2893,14 +2385,14 @@ Checking test 079 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 = 256.517274 + 0: The total amount of wall time = 293.135847 -Test 079 fv3_rrfs_v1beta_debug PASS +Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_rrfs_v1alpha_debug -Checking test 080 fv3_rrfs_v1alpha_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_rrfs_v1alpha_debug +Checking test 073 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2964,14 +2456,14 @@ Checking test 080 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 265.858831 + 0: The total amount of wall time = 295.444260 -Test 080 fv3_rrfs_v1alpha_debug PASS +Test 073 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 081 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 074 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 @@ -3035,14 +2527,14 @@ Checking test 081 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 = 270.841632 + 0: The total amount of wall time = 310.788782 -Test 081 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 074 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3056,228 +2548,228 @@ Checking test 082 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 = 506.681443 + 0: The total amount of wall time = 502.283760 -Test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_control_cfsr -Checking test 083 datm_control_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_control_cfsr +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 -The total amount of wall time = 133.239218 + 0: The total amount of wall time = 174.851978 -Test 083 datm_control_cfsr PASS +Test 076 datm_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_restart_cfsr -Checking test 084 datm_restart_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_restart_cfsr +Checking test 077 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 = 90.107312 + 0: The total amount of wall time = 79.954037 -Test 084 datm_restart_cfsr PASS +Test 077 datm_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_control_gefs -Checking test 085 datm_control_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_control_gefs +Checking test 078 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 = 126.073835 + 0: The total amount of wall time = 168.548424 -Test 085 datm_control_gefs PASS +Test 078 datm_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_bulk_cfsr -Checking test 086 datm_bulk_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_bulk_cfsr +Checking test 079 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 = 130.969713 + 0: The total amount of wall time = 171.044796 -Test 086 datm_bulk_cfsr PASS +Test 079 datm_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_bulk_gefs -Checking test 087 datm_bulk_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_bulk_gefs +Checking test 080 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 = 126.193445 + 0: The total amount of wall time = 144.142879 -Test 087 datm_bulk_gefs PASS +Test 080 datm_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_mx025_cfsr -Checking test 088 datm_mx025_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_mx025_cfsr +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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 515.624236 + 0: The total amount of wall time = 413.625657 -Test 088 datm_mx025_cfsr PASS +Test 081 datm_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_mx025_gefs -Checking test 089 datm_mx025_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_mx025_gefs +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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 505.252732 + 0: The total amount of wall time = 411.476878 -Test 089 datm_mx025_gefs PASS +Test 082 datm_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_debug_cfsr -Checking test 090 datm_debug_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_debug_cfsr +Checking test 083 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 = 356.574547 + 0: The total amount of wall time = 338.384551 -Test 090 datm_debug_cfsr PASS +Test 083 datm_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_control_cfsr -Checking test 091 datm_cdeps_control_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_control_cfsr +Checking test 084 datm_cdeps_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 = 214.428960 + 0: The total amount of wall time = 197.054399 -Test 091 datm_cdeps_control_cfsr PASS +Test 084 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_restart_cfsr -Checking test 092 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_restart_cfsr +Checking test 085 datm_cdeps_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 = 137.429851 + 0: The total amount of wall time = 118.201441 -Test 092 datm_cdeps_restart_cfsr PASS +Test 085 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_control_gefs -Checking test 093 datm_cdeps_control_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_control_gefs +Checking test 086 datm_cdeps_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 = 212.459073 + 0: The total amount of wall time = 192.511539 -Test 093 datm_cdeps_control_gefs PASS +Test 086 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_bulk_cfsr -Checking test 094 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_bulk_cfsr +Checking test 087 datm_cdeps_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 = 211.960601 + 0: The total amount of wall time = 196.785184 -Test 094 datm_cdeps_bulk_cfsr PASS +Test 087 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_bulk_gefs -Checking test 095 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_bulk_gefs +Checking test 088 datm_cdeps_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 = 209.985930 + 0: The total amount of wall time = 191.446887 -Test 095 datm_cdeps_bulk_gefs PASS +Test 088 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_mx025_cfsr -Checking test 096 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_mx025_cfsr +Checking test 089 datm_cdeps_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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 499.639121 + 0: The total amount of wall time = 413.144625 -Test 096 datm_cdeps_mx025_cfsr PASS +Test 089 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_mx025_gefs -Checking test 097 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_mx025_gefs +Checking test 090 datm_cdeps_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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 492.760161 + 0: The total amount of wall time = 402.444771 -Test 097 datm_cdeps_mx025_gefs PASS +Test 090 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_multiple_files_cfsr -Checking test 098 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_multiple_files_cfsr +Checking test 091 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 209.008180 + 0: The total amount of wall time = 196.655260 -Test 098 datm_cdeps_multiple_files_cfsr PASS +Test 091 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/datm_cdeps_debug_cfsr -Checking test 099 datm_cdeps_debug_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/datm_cdeps_debug_cfsr +Checking test 092 datm_cdeps_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 = 582.094552 + 0: The total amount of wall time = 566.463667 -Test 099 datm_cdeps_debug_cfsr PASS +Test 092 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39017/control_atmwav -Checking test 100 control_atmwav results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Minsuk.Ji/RT_RUNDIRS/Minsuk.Ji/FV3_RT/rt_149105/control_atmwav +Checking test 093 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3319,73 +2811,11 @@ Checking test 100 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 438.705560 - -Test 100 control_atmwav PASS - -FAILED TESTS: -Test control_c384gdas 036 failed in check_result failed -Test control_c384gdas 036 failed in run_test failed - -REGRESSION TEST FAILED -Wed Jun 2 22:57:17 GMT 2021 -Elapsed time: 03h:40m:57s. Have a nice day! - - -Thu Jun 3 13:37:08 GMT 2021 -Start Regression test - -Compile 001 elapsed time 2190 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jun.Wang/RT_RUNDIRS/Jun.Wang/FV3_RT/rt_166899/control_c384gdas -Checking test 001 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.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 = 810.676280 + 0: The total amount of wall time = 421.112011 -Test 001 control_c384gdas PASS +Test 093 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 3 14:34:59 GMT 2021 -Elapsed time: 00h:57m:52s. Have a nice day! +Wed Jul 21 13:50:35 GMT 2021 +Elapsed time: 01h:53m:41s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index c488b8d6e3..75d3449e82 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,26 +1,26 @@ -Wed Jun 2 14:16:26 CDT 2021 +Tue Jul 20 21:04:43 CDT 2021 Start Regression test -Compile 001 elapsed time 602 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 641 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp -Compile 003 elapsed time 174 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 528 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 571 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 538 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 543 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 541 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 152 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 010 elapsed time 144 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 172 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 183 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 183 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 98 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 197 seconds. APP=NG-GODAS -Compile 016 elapsed time 106 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 541 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_control +Compile 001 elapsed time 617 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 687 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 166 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 157 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 170 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 190 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 103 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 192 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 554 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 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 = 117.607609 + 0: The total amount of wall time = 103.185603 Test 001 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,70 +126,14 @@ Checking test 002 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 = 76.884682 + 0: The total amount of wall time = 79.756673 Test 002 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_controlfrac -Checking test 003 cpld_controlfrac results .... - Comparing sfcf024.tile1.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile2.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile3.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile4.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile5.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile6.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile1.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile2.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile3.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile4.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile5.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res.nc ............ALT CHECK......NOT OK - Comparing RESTART/iced.2016-10-04-00000.nc ............ALT CHECK......NOT OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 125.377941 - -Test 003 cpld_controlfrac FAIL - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_2threads -Checking test 005 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_2threads +Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -238,14 +182,14 @@ Checking test 005 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 = 122.889945 + 0: The total amount of wall time = 114.988293 -Test 005 cpld_2threads PASS +Test 003 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_decomp -Checking test 006 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_decomp +Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -294,14 +238,14 @@ Checking test 006 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 = 118.295226 + 0: The total amount of wall time = 143.526623 -Test 006 cpld_decomp PASS +Test 004 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_ca -Checking test 007 cpld_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_ca +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_ca +Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -350,14 +294,14 @@ Checking test 007 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.794401 + 0: The total amount of wall time = 116.254788 -Test 007 cpld_ca PASS +Test 005 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_control_c192 -Checking test 008 cpld_control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_control_c192 +Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK Comparing sfcf048.tile3.nc .........OK @@ -406,14 +350,14 @@ Checking test 008 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 = 400.321886 + 0: The total amount of wall time = 396.175111 -Test 008 cpld_control_c192 PASS +Test 006 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restart_c192 -Checking test 009 cpld_restart_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_restart_c192 +Checking test 007 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK Comparing sfcf048.tile3.nc .........OK @@ -462,26 +406,26 @@ Checking test 009 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 = 279.670937 - -Test 009 cpld_restart_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_controlfrac_c192 -Checking test 010 cpld_controlfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK + 0: The total amount of wall time = 298.133853 + +Test 007 cpld_restart_c192 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_control_c384 +Checking test 008 cpld_control_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -515,29 +459,32 @@ Checking test 010 cpld_controlfrac_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-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - - 0: The total amount of wall time = 387.654797 - -Test 010 cpld_controlfrac_c192 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restartfrac_c192 -Checking test 011 cpld_restartfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK + 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 + + 0: The total amount of wall time = 804.447815 + +Test 008 cpld_control_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_restart_c384 +Checking test 009 cpld_restart_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -571,29 +518,22 @@ Checking test 011 cpld_restartfrac_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-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK + 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 - 0: The total amount of wall time = 275.608210 + 0: The total amount of wall time = 534.156501 -Test 011 cpld_restartfrac_c192 PASS +Test 009 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_control_c384 -Checking test 012 cpld_control_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_bmark_v16 +Checking test 010 cpld_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -630,29 +570,19 @@ Checking test 012 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 + 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 = 1360.659267 + 0: The total amount of wall time = 695.318846 -Test 012 cpld_control_c384 PASS +Test 010 cpld_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restart_c384 -Checking test 013 cpld_restart_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_restart_bmark_v16 +Checking test 011 cpld_restart_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -689,29 +619,19 @@ Checking test 013 cpld_restart_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 + 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 = 718.867660 + 0: The total amount of wall time = 471.112598 -Test 013 cpld_restart_c384 PASS +Test 011 cpld_restart_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_controlfrac_c384 -Checking test 014 cpld_controlfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_v16_nsst +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_bmark_v16_nsst +Checking test 012 cpld_bmark_v16_nsst results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -748,29 +668,21 @@ Checking test 014 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 + 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 = 1350.006356 + 0: The total amount of wall time = 716.813452 -Test 014 cpld_controlfrac_c384 PASS +Test 012 cpld_bmark_v16_nsst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restartfrac_c384 -Checking test 015 cpld_restartfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_bmark_wave_v16 +Checking test 013 cpld_bmark_wave_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.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 @@ -807,29 +719,21 @@ Checking test 015 cpld_restartfrac_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 + 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 = 717.037723 + 0: The total amount of wall time = 736.539826 -Test 015 cpld_restartfrac_c384 PASS +Test 013 cpld_bmark_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmark -Checking test 016 cpld_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_bmark_wave_v16_p7b +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_bmark_wave_v16_p7b +Checking test 014 cpld_bmark_wave_v16_p7b results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.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 @@ -866,17 +770,17 @@ Checking test 016 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 + 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 = 855.714400 + 0: The total amount of wall time = 925.213779 -Test 016 cpld_bmark PASS +Test 014 cpld_bmark_wave_v16_p7b PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restart_bmark -Checking test 017 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_control_wave +Checking test 015 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -922,32 +826,32 @@ Checking test 017 cpld_restart_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 + 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 - 0: The total amount of wall time = 460.551398 + 0: The total amount of wall time = 173.625429 -Test 017 cpld_restart_bmark PASS +Test 015 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmarkfrac -Checking test 018 cpld_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/cpld_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/cpld_debug +Checking test 016 cpld_debug results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -981,32 +885,25 @@ Checking test 018 cpld_bmarkfrac 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 + 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 = 866.293851 + 0: The total amount of wall time = 305.456347 -Test 018 cpld_bmarkfrac PASS +Test 016 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restart_bmarkfrac -Checking test 019 cpld_restart_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control +Checking test 017 control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........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 @@ -1039,23 +936,23 @@ Checking test 019 cpld_restart_bmarkfrac results .... 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 - 0: The total amount of wall time = 461.039561 + 0: The total amount of wall time = 189.614726 -Test 019 cpld_restart_bmarkfrac PASS +Test 017 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmarkfrac_v16 -Checking test 020 cpld_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_decomp +Checking test 018 control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........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 @@ -1088,23 +985,23 @@ Checking test 020 cpld_bmarkfrac_v16 results .... 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 - 0: The total amount of wall time = 795.468766 + 0: The total amount of wall time = 179.231666 -Test 020 cpld_bmarkfrac_v16 PASS +Test 018 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmarkfrac_v16_nsst -Checking test 021 cpld_bmarkfrac_v16_nsst results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_2threads +Checking test 019 control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........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 @@ -1137,85 +1034,19 @@ Checking test 021 cpld_bmarkfrac_v16_nsst results .... 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 - 0: The total amount of wall time = 806.295810 + 0: The total amount of wall time = 173.622466 -Test 021 cpld_bmarkfrac_v16_nsst PASS +Test 019 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_restart_bmarkfrac_v16 -Checking test 022 cpld_restart_bmarkfrac_v16 results .... - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res_1.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res_2.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res_3.nc ............ALT CHECK......NOT OK - Comparing RESTART/iced.2013-04-01-21600.nc ............ALT CHECK......NOT OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 475.604520 - -Test 022 cpld_restart_bmarkfrac_v16 FAIL - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmark_wave -Checking test 023 cpld_bmark_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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-20210720/INTEL/control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_restart +Checking test 020 control_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........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 @@ -1248,554 +1079,21 @@ Checking test 023 cpld_bmark_wave results .... 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 - 0: The total amount of wall time = 1009.698089 + 0: The total amount of wall time = 78.655183 -Test 023 cpld_bmark_wave PASS +Test 020 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmarkfrac_wave -Checking test 024 cpld_bmarkfrac_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 - - 0: The total amount of wall time = 1032.364329 - -Test 024 cpld_bmarkfrac_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmarkfrac_wave_v16 -Checking test 025 cpld_bmarkfrac_wave_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.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 - - 0: The total amount of wall time = 836.374471 - -Test 025 cpld_bmarkfrac_wave_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_wave_v16_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_bmarkfrac_wave_v16_noahmp -Checking test 026 cpld_bmarkfrac_wave_v16_noahmp results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.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 - - 0: The total amount of wall time = 840.151302 - -Test 026 cpld_bmarkfrac_wave_v16_noahmp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_control_wave -Checking test 027 cpld_control_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 154.090693 - -Test 027 cpld_control_wave PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_debug -Checking test 028 cpld_debug results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 334.224518 - -Test 028 cpld_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/cpld_debugfrac -Checking test 029 cpld_debugfrac results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 326.420136 - -Test 029 cpld_debugfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control -Checking test 030 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.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 = 165.240036 - -Test 030 control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_decomp -Checking test 031 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.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 = 171.385702 - -Test 031 control_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_2threads -Checking test 032 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.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 = 165.309971 - -Test 032 control_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_restart -Checking test 033 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.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 = 74.480950 - -Test 033 control_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_CubedSphereGrid -Checking test 034 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1815,14 +1113,14 @@ Checking test 034 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 143.913969 + 0: The total amount of wall time = 159.061967 -Test 034 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_wrtGauss_netcdf_parallel -Checking test 035 control_wrtGauss_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1832,14 +1130,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 215.064075 + 0: The total amount of wall time = 263.345661 -Test 035 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_c192 -Checking test 036 control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c192 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1849,14 +1147,14 @@ Checking test 036 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 469.718580 + 0: The total amount of wall time = 505.381967 -Test 036 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_c384 -Checking test 037 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1866,14 +1164,14 @@ Checking test 037 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 738.693105 + 0: The total amount of wall time = 783.408738 -Test 037 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_c384gdas -Checking test 038 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_c384gdas +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1915,14 +1213,14 @@ Checking test 038 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.209335 + 0: The total amount of wall time = 681.828969 -Test 038 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_stochy -Checking test 039 control_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1932,14 +1230,14 @@ Checking test 039 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.820780 + 0: The total amount of wall time = 124.456908 -Test 039 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_ca -Checking test 040 control_ca results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ca +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_ca +Checking test 027 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1949,14 +1247,14 @@ Checking test 040 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.308439 + 0: The total amount of wall time = 132.587366 -Test 040 control_ca PASS +Test 027 control_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_lndp -Checking test 041 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1966,14 +1264,31 @@ Checking test 041 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.868973 + 0: The total amount of wall time = 121.041683 + +Test 028 control_lndp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_lheatstrg +Checking test 029 control_lheatstrg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 185.957893 -Test 041 control_lndp PASS +Test 029 control_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_lheatstrg -Checking test 042 control_lheatstrg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lseaspray +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_lseaspray +Checking test 030 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1983,14 +1298,14 @@ Checking test 042 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.790408 + 0: The total amount of wall time = 179.521155 -Test 042 control_lheatstrg PASS +Test 030 control_lseaspray PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_merra2 -Checking test 043 control_merra2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_merra2 +Checking test 031 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2000,14 +1315,14 @@ Checking test 043 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 265.409657 + 0: The total amount of wall time = 259.330929 -Test 043 control_merra2 PASS +Test 031 control_merra2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_rrtmgp -Checking test 044 control_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_rrtmgp +Checking test 032 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2017,14 +1332,14 @@ Checking test 044 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.102663 + 0: The total amount of wall time = 229.344429 -Test 044 control_rrtmgp PASS +Test 032 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_csawmg -Checking test 045 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_csawmg +Checking test 033 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2034,14 +1349,14 @@ Checking test 045 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 351.407997 + 0: The total amount of wall time = 362.707000 -Test 045 control_csawmg PASS +Test 033 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_csawmgt -Checking test 046 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_csawmgt +Checking test 034 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2051,14 +1366,14 @@ Checking test 046 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 403.098974 + 0: The total amount of wall time = 406.555385 -Test 046 control_csawmgt PASS +Test 034 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_flake -Checking test 047 control_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_flake +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_flake +Checking test 035 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2068,14 +1383,14 @@ Checking test 047 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.364149 + 0: The total amount of wall time = 263.032796 -Test 047 control_flake PASS +Test 035 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_ugwpv1 -Checking test 048 control_ugwpv1 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1 +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_ugwpv1 +Checking test 036 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2085,14 +1400,14 @@ Checking test 048 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.784551 + 0: The total amount of wall time = 213.975175 -Test 048 control_ugwpv1 PASS +Test 036 control_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_ras -Checking test 049 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_ras +Checking test 037 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2102,14 +1417,14 @@ Checking test 049 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.072610 + 0: The total amount of wall time = 190.231116 -Test 049 control_ras PASS +Test 037 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_thompson -Checking test 050 control_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_thompson +Checking test 038 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2119,14 +1434,14 @@ Checking test 050 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.479355 + 0: The total amount of wall time = 209.776277 -Test 050 control_thompson PASS +Test 038 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_thompson_no_aero -Checking test 051 control_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_thompson_no_aero +Checking test 039 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2136,14 +1451,14 @@ Checking test 051 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.488538 + 0: The total amount of wall time = 204.728407 -Test 051 control_thompson_no_aero PASS +Test 039 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_noahmp -Checking test 052 control_noahmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_noahmp +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_noahmp +Checking test 040 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2153,40 +1468,40 @@ Checking test 052 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.558477 + 0: The total amount of wall time = 189.569059 -Test 052 control_noahmp PASS +Test 040 control_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_control -Checking test 053 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_control +Checking test 041 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 = 297.523183 + 0: The total amount of wall time = 298.487352 -Test 053 regional_control PASS +Test 041 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_restart -Checking test 054 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_restart +Checking test 042 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 = 161.928661 + 0: The total amount of wall time = 168.947480 -Test 054 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_quilt -Checking test 055 regional_quilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_quilt +Checking test 043 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2196,14 +1511,14 @@ Checking test 055 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 308.613579 + 0: The total amount of wall time = 314.268234 -Test 055 regional_quilt PASS +Test 043 regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_quilt_2threads -Checking test 056 regional_quilt_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_quilt_2threads +Checking test 044 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2213,14 +1528,14 @@ Checking test 056 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 221.867478 + 0: The total amount of wall time = 230.953958 -Test 056 regional_quilt_2threads PASS +Test 044 regional_quilt_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_quilt_hafs -Checking test 057 regional_quilt_hafs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_quilt_hafs +Checking test 045 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2228,28 +1543,28 @@ Checking test 057 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 305.038024 + 0: The total amount of wall time = 314.784419 -Test 057 regional_quilt_hafs PASS +Test 045 regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_quilt_netcdf_parallel -Checking test 058 regional_quilt_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_quilt_netcdf_parallel +Checking test 046 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 + Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 309.540960 + 0: The total amount of wall time = 323.097485 -Test 058 regional_quilt_netcdf_parallel PASS +Test 046 regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_quilt_RRTMGP -Checking test 059 regional_quilt_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_quilt_RRTMGP +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_quilt_RRTMGP +Checking test 047 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2259,14 +1574,14 @@ Checking test 059 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 401.127344 + 0: The total amount of wall time = 394.582073 -Test 059 regional_quilt_RRTMGP PASS +Test 047 regional_quilt_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_gsd -Checking test 060 fv3_gsd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_gsd +Checking test 048 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2354,14 +1669,14 @@ Checking test 060 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.323080 + 0: The total amount of wall time = 256.342083 -Test 060 fv3_gsd PASS +Test 048 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_rrfs_v1alpha -Checking test 061 fv3_rrfs_v1alpha results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_rrfs_v1alpha +Checking test 049 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2425,14 +1740,14 @@ Checking test 061 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.177336 + 0: The total amount of wall time = 101.993952 -Test 061 fv3_rrfs_v1alpha PASS +Test 049 fv3_rrfs_v1alpha PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_rap -Checking test 062 fv3_rap results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rap +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_rap +Checking test 050 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2496,14 +1811,14 @@ Checking test 062 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.346970 + 0: The total amount of wall time = 94.887479 -Test 062 fv3_rap PASS +Test 050 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_hrrr -Checking test 063 fv3_hrrr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_hrrr +Checking test 051 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2567,14 +1882,14 @@ Checking test 063 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 110.625484 + 0: The total amount of wall time = 98.957055 -Test 063 fv3_hrrr PASS +Test 051 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_rrfs_v1beta -Checking test 064 fv3_rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_rrfs_v1beta +Checking test 052 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2638,14 +1953,14 @@ Checking test 064 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 = 113.343777 + 0: The total amount of wall time = 118.556772 -Test 064 fv3_rrfs_v1beta PASS +Test 052 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_HAFS_v0_hwrf_thompson -Checking test 065 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/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 @@ -2709,14 +2024,14 @@ Checking test 065 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 = 155.195197 + 0: The total amount of wall time = 153.143095 -Test 065 fv3_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/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 @@ -2730,40 +2045,40 @@ Checking test 066 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.292582 + 0: The total amount of wall time = 291.766087 -Test 066 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_debug -Checking test 067 control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_debug +Checking test 055 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.619299 + 0: The total amount of wall time = 177.373634 -Test 067 control_debug PASS +Test 055 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_2threads_debug -Checking test 068 control_2threads_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_2threads_debug +Checking test 056 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.825343 + 0: The total amount of wall time = 230.870848 -Test 068 control_2threads_debug PASS +Test 056 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_CubedSphereGrid_debug -Checking test 069 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_CubedSphereGrid_debug +Checking test 057 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2789,255 +2104,210 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 194.732832 + 0: The total amount of wall time = 195.447545 -Test 069 control_CubedSphereGrid_debug PASS +Test 057 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_wrtGauss_netcdf_parallel_debug -Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_wrtGauss_netcdf_parallel_debug +Checking test 058 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.896067 + 0: The total amount of wall time = 185.174351 -Test 070 control_wrtGauss_netcdf_parallel_debug PASS +Test 058 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_stochy_debug -Checking test 071 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_stochy_debug +Checking test 059 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.580092 + 0: The total amount of wall time = 180.728302 -Test 071 control_stochy_debug PASS +Test 059 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_lndp_debug -Checking test 072 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_lndp_debug +Checking test 060 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.581816 + 0: The total amount of wall time = 155.565692 -Test 072 control_lndp_debug PASS +Test 060 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_lheatstrg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_lheatstrg_debug -Checking test 073 control_lheatstrg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_lheatstrg_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_lheatstrg_debug +Checking test 061 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.476124 + 0: The total amount of wall time = 148.824776 -Test 073 control_lheatstrg_debug PASS +Test 061 control_lheatstrg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_merra2_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_merra2_debug -Checking test 074 control_merra2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_merra2_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_merra2_debug +Checking test 062 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.586763 + 0: The total amount of wall time = 266.290531 -Test 074 control_merra2_debug PASS +Test 062 control_merra2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_rrtmgp_debug -Checking test 075 control_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_rrtmgp_debug +Checking test 063 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.038941 + 0: The total amount of wall time = 180.571080 -Test 075 control_rrtmgp_debug PASS +Test 063 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_csawmg_debug -Checking test 076 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_csawmg_debug +Checking test 064 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.945345 + 0: The total amount of wall time = 299.092990 -Test 076 control_csawmg_debug PASS +Test 064 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_csawmgt_debug -Checking test 077 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_csawmgt_debug +Checking test 065 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.751079 + 0: The total amount of wall time = 310.639027 -Test 077 control_csawmgt_debug PASS +Test 065 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_ugwpv1_debug -Checking test 078 control_ugwpv1_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ugwpv1_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_ugwpv1_debug +Checking test 066 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.352170 + 0: The total amount of wall time = 191.549642 -Test 078 control_ugwpv1_debug PASS +Test 066 control_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_ras_debug -Checking test 079 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_ras_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_ras_debug +Checking test 067 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.333963 + 0: The total amount of wall time = 164.115801 -Test 079 control_ras_debug PASS +Test 067 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_thompson_debug -Checking test 080 control_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_diag_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_diag_debug +Checking test 068 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.211259 + 0: The total amount of wall time = 161.706436 -Test 080 control_thompson_debug PASS +Test 068 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_thompson_no_aero_debug -Checking test 081 control_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_thompson_debug +Checking test 069 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.685355 - -Test 081 control_thompson_no_aero_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/regional_control_debug -Checking test 082 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 = 247.428214 + 0: The total amount of wall time = 204.725958 -Test 082 regional_control_debug PASS +Test 069 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_gsd_debug -Checking test 083 fv3_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 sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_thompson_no_aero_debug +Checking test 070 control_thompson_no_aero_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 195.289542 + +Test 070 control_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_thompson_debug_extdiag +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_thompson_extdiag_debug +Checking test 071 control_thompson_extdiag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 220.984129 + +Test 071 control_thompson_extdiag_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/regional_control_debug +Checking test 072 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 = 226.073829 + 0: The total amount of wall time = 247.419944 -Test 083 fv3_gsd_debug PASS +Test 072 regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_gsd_diag3d_debug -Checking test 084 fv3_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_gsd_debug +Checking test 073 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3101,14 +2371,47 @@ Checking test 084 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 = 349.276499 + 0: The total amount of wall time = 257.586289 + +Test 073 fv3_gsd_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_gsd_diag_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_gsd_diag_debug +Checking test 074 fv3_gsd_diag_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + + 0: The total amount of wall time = 555.522112 -Test 084 fv3_gsd_diag3d_debug PASS +Test 074 fv3_gsd_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_rrfs_v1beta_debug -Checking test 085 fv3_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_rrfs_v1beta_debug +Checking test 075 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3172,14 +2475,14 @@ Checking test 085 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 = 218.253115 + 0: The total amount of wall time = 213.758561 -Test 085 fv3_rrfs_v1beta_debug PASS +Test 075 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_rrfs_v1alpha_debug -Checking test 086 fv3_rrfs_v1alpha_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_rrfs_v1alpha_debug +Checking test 076 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3243,14 +2546,14 @@ Checking test 086 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.847349 + 0: The total amount of wall time = 217.319626 -Test 086 fv3_rrfs_v1alpha_debug PASS +Test 076 fv3_rrfs_v1alpha_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 077 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 @@ -3314,14 +2617,14 @@ Checking test 087 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 = 228.649418 + 0: The total amount of wall time = 221.407669 -Test 087 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 077 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 078 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3335,213 +2638,228 @@ Checking test 088 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 = 420.838915 + 0: The total amount of wall time = 425.789988 -Test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 078 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_control_cfsr -Checking test 089 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_control_cfsr +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 - 0: The total amount of wall time = 121.295094 + 0: The total amount of wall time = 106.592837 -Test 089 datm_control_cfsr PASS +Test 079 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_restart_cfsr -Checking test 090 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_restart_cfsr +Checking test 080 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 = 85.911194 + 0: The total amount of wall time = 101.721270 -Test 090 datm_restart_cfsr PASS +Test 080 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_control_gefs -Checking test 091 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_control_gefs +Checking test 081 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.619562 + 0: The total amount of wall time = 98.786655 -Test 091 datm_control_gefs PASS +Test 081 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_bulk_cfsr -Checking test 092 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_bulk_cfsr +Checking test 082 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 = 110.009653 + 0: The total amount of wall time = 109.118912 -Test 092 datm_bulk_cfsr PASS +Test 082 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_bulk_gefs -Checking test 093 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_bulk_gefs +Checking test 083 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.600780 + 0: The total amount of wall time = 100.877399 -Test 093 datm_bulk_gefs PASS +Test 083 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_mx025_cfsr -Checking test 094 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_mx025_cfsr +Checking test 084 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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 407.226074 + 0: The total amount of wall time = 454.821181 -Test 094 datm_mx025_cfsr PASS +Test 084 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_mx025_gefs -Checking test 095 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_mx025_gefs +Checking test 085 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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 401.676931 + 0: The total amount of wall time = 374.356886 -Test 095 datm_mx025_gefs PASS +Test 085 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_debug_cfsr -Checking test 096 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_debug_cfsr +Checking test 086 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 = 293.888216 + 0: The total amount of wall time = 292.594259 -Test 096 datm_debug_cfsr PASS +Test 086 datm_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_control_cfsr -Checking test 097 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_control_cfsr +Checking test 087 datm_cdeps_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 = 152.422783 + 0: The total amount of wall time = 156.746843 -Test 097 datm_cdeps_control_cfsr PASS +Test 087 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_restart_cfsr -Checking test 098 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_restart_cfsr +Checking test 088 datm_cdeps_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 = 94.690412 + 0: The total amount of wall time = 107.290535 -Test 098 datm_cdeps_restart_cfsr PASS +Test 088 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_control_gefs -Checking test 099 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_control_gefs +Checking test 089 datm_cdeps_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 = 152.081364 + 0: The total amount of wall time = 151.430297 -Test 099 datm_cdeps_control_gefs PASS +Test 089 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_bulk_cfsr -Checking test 100 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_bulk_cfsr +Checking test 090 datm_cdeps_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 = 157.199820 + 0: The total amount of wall time = 153.819083 -Test 100 datm_cdeps_bulk_cfsr PASS +Test 090 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_bulk_gefs -Checking test 101 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_bulk_gefs +Checking test 091 datm_cdeps_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 = 152.206093 + 0: The total amount of wall time = 152.878140 -Test 101 datm_cdeps_bulk_gefs PASS +Test 091 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_mx025_gefs -Checking test 102 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_mx025_cfsr +Checking test 092 datm_cdeps_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_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 410.460817 + +Test 092 datm_cdeps_mx025_cfsr PASS - 0: The total amount of wall time = 473.845926 -Test 102 datm_cdeps_mx025_gefs PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_mx025_gefs +Checking test 093 datm_cdeps_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-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK + 0: The total amount of wall time = 384.171365 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_multiple_files_cfsr -Checking test 103 datm_cdeps_multiple_files_cfsr results .... +Test 093 datm_cdeps_mx025_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_multiple_files_cfsr +Checking test 094 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.148183 + 0: The total amount of wall time = 148.208025 -Test 103 datm_cdeps_multiple_files_cfsr PASS +Test 094 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/datm_cdeps_debug_cfsr -Checking test 104 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/datm_cdeps_debug_cfsr +Checking test 095 datm_cdeps_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 = 461.610301 + 0: The total amount of wall time = 451.902398 -Test 104 datm_cdeps_debug_cfsr PASS +Test 095 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_227346/control_atmwav -Checking test 105 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210720/INTEL/control_atmwav +working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_22982/control_atmwav +Checking test 096 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3583,232 +2901,11 @@ Checking test 105 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.918301 - -Test 105 control_atmwav PASS - -FAILED TESTS: -Test cpld_controlfrac 003 failed in check_result failed -Test cpld_controlfrac 003 failed in run_test failed -Test cpld_restart_bmarkfrac_v16 022 failed in check_result failed -Test cpld_restart_bmarkfrac_v16 022 failed in run_test failed - -REGRESSION TEST FAILED -Wed Jun 2 21:16:35 CDT 2021 -Elapsed time: 07h:00m:10s. Have a nice day! - - -Thu Jun 3 08:27:42 CDT 2021 -Start Regression test - -Compile 001 elapsed time 679 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_202588/cpld_controlfrac -Checking test 001 cpld_controlfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 189.656998 - -Test 001 cpld_controlfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_202588/cpld_restartfrac -Checking test 002 cpld_restartfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 93.521017 - -Test 002 cpld_restartfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_202588/cpld_bmarkfrac_v16 -Checking test 003 cpld_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - - 0: The total amount of wall time = 1191.507085 - -Test 003 cpld_bmarkfrac_v16 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_RT/rt_202588/cpld_restart_bmarkfrac_v16 -Checking test 004 cpld_restart_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 + 0: The total amount of wall time = 366.840638 - 0: The total amount of wall time = 451.399622 +Test 096 control_atmwav PASS -Test 004 cpld_restart_bmarkfrac_v16 PASS +REGRESSION TEST WAS SUCCESSFUL +Wed Jul 21 00:53:11 CDT 2021 +Elapsed time: 03h:48m:28s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 4188218796..a3318cb8eb 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Wed Jun 2 19:13:15 UTC 2021 +Mon Jul 19 19:51:53 UTC 2021 Start Regression test -Compile 001 elapsed time 862 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 002 elapsed time 955 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 003 elapsed time 877 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 004 elapsed time 867 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 005 elapsed time 872 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 006 elapsed time 514 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 007 elapsed time 487 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 008 elapsed time 466 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 009 elapsed time 461 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control +Compile 001 elapsed time 888 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 955 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 914 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 856 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 914 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 516 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 447 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -55,13 +55,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 187.750798 +The total amount of wall time = 186.307156 Test 001 control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -104,13 +104,13 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.939066 +The total amount of wall time = 191.909602 Test 002 control_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_restart Checking test 003 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -149,13 +149,13 @@ Checking test 003 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.746726 +The total amount of wall time = 69.964622 Test 003 control_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_CubedSphereGrid +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_CubedSphereGrid Checking test 004 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 004 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 141.853474 +The total amount of wall time = 137.348759 Test 004 control_CubedSphereGrid PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_wrtGauss_netcdf_parallel Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -199,13 +199,13 @@ Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 189.895269 +The total amount of wall time = 203.677581 Test 005 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_c192 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_c192 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_c192 Checking test 006 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -216,13 +216,13 @@ Checking test 006 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 519.349448 +The total amount of wall time = 528.189283 Test 006 control_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_stochy -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_stochy Checking test 007 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -233,13 +233,13 @@ Checking test 007 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 145.756178 +The total amount of wall time = 143.578206 Test 007 control_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ca -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ca +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_ca Checking test 008 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -250,13 +250,13 @@ Checking test 008 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 135.963353 +The total amount of wall time = 136.540588 Test 008 control_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lndp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lndp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_lndp Checking test 009 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -267,13 +267,13 @@ Checking test 009 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 132.785616 +The total amount of wall time = 141.652923 Test 009 control_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lheatstrg -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lheatstrg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_lheatstrg Checking test 010 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -284,14 +284,14 @@ Checking test 010 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 175.930995 +The total amount of wall time = 193.934583 Test 010 control_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_merra2 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_merra2 -Checking test 011 control_merra2 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lseaspray +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_lseaspray +Checking test 011 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -301,14 +301,14 @@ Checking test 011 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 242.145422 +The total amount of wall time = 196.773250 -Test 011 control_merra2 PASS +Test 011 control_lseaspray PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_rrtmgp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_rrtmgp -Checking test 012 control_rrtmgp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_merra2 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_merra2 +Checking test 012 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -318,14 +318,14 @@ Checking test 012 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 230.493812 +The total amount of wall time = 262.974077 -Test 012 control_rrtmgp PASS +Test 012 control_merra2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmg -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_csawmg -Checking test 013 control_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_rrtmgp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_rrtmgp +Checking test 013 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -335,14 +335,14 @@ Checking test 013 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 314.866240 +The total amount of wall time = 230.980458 -Test 013 control_csawmg PASS +Test 013 control_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmgt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_csawmgt -Checking test 014 control_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_csawmg +Checking test 014 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -352,14 +352,14 @@ Checking test 014 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 379.265245 +The total amount of wall time = 355.861137 -Test 014 control_csawmgt PASS +Test 014 control_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_flake -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_flake -Checking test 015 control_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmgt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_csawmgt +Checking test 015 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -369,14 +369,14 @@ Checking test 015 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 250.662853 +The total amount of wall time = 409.196049 -Test 015 control_flake PASS +Test 015 control_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ugwpv1 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_ugwpv1 -Checking test 016 control_ugwpv1 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_flake +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_flake +Checking test 016 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -386,14 +386,14 @@ Checking test 016 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 218.369985 +The total amount of wall time = 240.716301 -Test 016 control_ugwpv1 PASS +Test 016 control_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ras -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_ras -Checking test 017 control_ras results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ugwpv1 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_ugwpv1 +Checking test 017 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -403,14 +403,14 @@ Checking test 017 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 200.697123 +The total amount of wall time = 212.885834 -Test 017 control_ras PASS +Test 017 control_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_noahmp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_noahmp -Checking test 018 control_noahmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ras +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_ras +Checking test 018 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -420,40 +420,57 @@ Checking test 018 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 198.518849 +The total amount of wall time = 214.352907 -Test 018 control_noahmp PASS +Test 018 control_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/regional_control -Checking test 019 regional_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_noahmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_noahmp +Checking test 019 control_noahmp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 204.913117 + +Test 019 control_noahmp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/regional_control +Checking test 020 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 = 355.581662 +The total amount of wall time = 350.603432 -Test 019 regional_control PASS +Test 020 regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/regional_restart -Checking test 020 regional_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/regional_restart +Checking test 021 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 211.429880 +The total amount of wall time = 214.235607 -Test 020 regional_restart PASS +Test 021 regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/regional_quilt -Checking test 021 regional_quilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/regional_quilt +Checking test 022 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -463,14 +480,14 @@ Checking test 021 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 327.993638 +The total amount of wall time = 338.310198 -Test 021 regional_quilt PASS +Test 022 regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/regional_quilt_hafs -Checking test 022 regional_quilt_hafs results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/regional_quilt_hafs +Checking test 023 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -478,28 +495,28 @@ Checking test 022 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 327.651627 +The total amount of wall time = 337.220459 -Test 022 regional_quilt_hafs PASS +Test 023 regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/regional_quilt_netcdf_parallel -Checking test 023 regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/regional_quilt_netcdf_parallel +Checking test 024 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 = 326.583898 +The total amount of wall time = 339.561289 -Test 023 regional_quilt_netcdf_parallel PASS +Test 024 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt_RRTMGP -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/regional_quilt_RRTMGP -Checking test 024 regional_quilt_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/regional_quilt_RRTMGP +Checking test 025 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -509,14 +526,14 @@ Checking test 024 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 434.100519 +The total amount of wall time = 447.742347 -Test 024 regional_quilt_RRTMGP PASS +Test 025 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_gsd -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_gsd -Checking test 025 fv3_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_gsd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_gsd +Checking test 026 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -604,14 +621,14 @@ Checking test 025 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.710153 +The total amount of wall time = 200.868950 -Test 025 fv3_gsd PASS +Test 026 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_rrfs_v1alpha -Checking test 026 fv3_rrfs_v1alpha results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_rrfs_v1alpha +Checking test 027 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -675,14 +692,14 @@ Checking test 026 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.225802 +The total amount of wall time = 106.197658 -Test 026 fv3_rrfs_v1alpha PASS +Test 027 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rap -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_rap -Checking test 027 fv3_rap results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rap +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_rap +Checking test 028 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -746,14 +763,14 @@ Checking test 027 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.733311 +The total amount of wall time = 109.545381 -Test 027 fv3_rap PASS +Test 028 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_hrrr -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_hrrr -Checking test 028 fv3_hrrr results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_hrrr +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_hrrr +Checking test 029 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -817,14 +834,14 @@ Checking test 028 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.860552 +The total amount of wall time = 104.577062 -Test 028 fv3_hrrr PASS +Test 029 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_rrfs_v1beta -Checking test 029 fv3_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_rrfs_v1beta +Checking test 030 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -888,14 +905,14 @@ Checking test 029 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.467181 +The total amount of wall time = 106.634954 -Test 029 fv3_rrfs_v1beta PASS +Test 030 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_HAFS_v0_hwrf_thompson -Checking test 030 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_HAFS_v0_hwrf_thompson +Checking test 031 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -959,14 +976,14 @@ Checking test 030 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 = 163.427249 +The total amount of wall time = 169.718400 -Test 030 fv3_HAFS_v0_hwrf_thompson PASS +Test 031 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 032 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -980,27 +997,27 @@ Checking test 031 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.605839 +The total amount of wall time = 349.549997 -Test 031 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 032 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_debug -Checking test 032 control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_debug +Checking test 033 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 142.521589 +The total amount of wall time = 143.812712 -Test 032 control_debug PASS +Test 033 control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_CubedSphereGrid_debug -Checking test 033 control_CubedSphereGrid_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_CubedSphereGrid_debug +Checking test 034 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1026,184 +1043,197 @@ Checking test 033 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 151.842230 +The total amount of wall time = 148.332126 + +Test 034 control_CubedSphereGrid_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_wrtGauss_netcdf_parallel_debug +Checking test 035 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 143.217415 -Test 033 control_CubedSphereGrid_debug PASS +Test 035 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_wrtGauss_netcdf_parallel_debug -Checking test 034 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_stochy_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_stochy_debug +Checking test 036 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.717812 +The total amount of wall time = 160.822744 -Test 034 control_wrtGauss_netcdf_parallel_debug PASS +Test 036 control_stochy_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_stochy_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_stochy_debug -Checking test 035 control_stochy_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lndp_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_lndp_debug +Checking test 037 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.977491 +The total amount of wall time = 146.221511 -Test 035 control_stochy_debug PASS +Test 037 control_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lndp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_lndp_debug -Checking test 036 control_lndp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lheatstrg_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_lheatstrg_debug +Checking test 038 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 147.453530 +The total amount of wall time = 141.117007 -Test 036 control_lndp_debug PASS +Test 038 control_lheatstrg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lheatstrg_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_lheatstrg_debug -Checking test 037 control_lheatstrg_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_merra2_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_merra2_debug +Checking test 039 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 143.690621 +The total amount of wall time = 211.124701 -Test 037 control_lheatstrg_debug PASS +Test 039 control_merra2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_merra2_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_merra2_debug -Checking test 038 control_merra2_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_rrtmgp_debug +Checking test 040 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 198.586531 +The total amount of wall time = 162.358148 -Test 038 control_merra2_debug PASS +Test 040 control_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_rrtmgp_debug -Checking test 039 control_rrtmgp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_csawmg_debug +Checking test 041 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.339116 +The total amount of wall time = 274.847806 -Test 039 control_rrtmgp_debug PASS +Test 041 control_csawmg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_csawmg_debug -Checking test 040 control_csawmg_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_csawmgt_debug +Checking test 042 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 238.783850 +The total amount of wall time = 284.892785 -Test 040 control_csawmg_debug PASS +Test 042 control_csawmgt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_csawmgt_debug -Checking test 041 control_csawmgt_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_ugwpv1_debug +Checking test 043 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 276.323589 +The total amount of wall time = 155.549450 -Test 041 control_csawmgt_debug PASS +Test 043 control_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_ugwpv1_debug -Checking test 042 control_ugwpv1_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ras_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_ras_debug +Checking test 044 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 153.924229 +The total amount of wall time = 148.109196 -Test 042 control_ugwpv1_debug PASS +Test 044 control_ras_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ras_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_ras_debug -Checking test 043 control_ras_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_thompson_debug +Checking test 045 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.251079 +The total amount of wall time = 168.834555 -Test 043 control_ras_debug PASS +Test 045 control_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_thompson_debug -Checking test 044 control_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_thompson_no_aero_debug +Checking test 046 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.783943 +The total amount of wall time = 163.912969 -Test 044 control_thompson_debug PASS +Test 046 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/control_thompson_no_aero_debug -Checking test 045 control_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson_debug_extdiag +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/control_thompson_extdiag_debug +Checking test 047 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.266553 +The total amount of wall time = 179.802671 -Test 045 control_thompson_no_aero_debug PASS +Test 047 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/regional_control_debug -Checking test 046 regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/regional_control_debug +Checking test 048 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 = 243.841703 +The total amount of wall time = 243.849589 -Test 046 regional_control_debug PASS +Test 048 regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_gsd_debug -Checking test 047 fv3_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_gsd_debug +Checking test 049 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1267,14 +1297,14 @@ Checking test 047 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.832002 +The total amount of wall time = 198.894716 -Test 047 fv3_gsd_debug PASS +Test 049 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_gsd_diag3d_debug -Checking test 048 fv3_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_gsd_diag3d_debug +Checking test 050 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1338,14 +1368,14 @@ Checking test 048 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 = 244.572575 +The total amount of wall time = 248.921328 -Test 048 fv3_gsd_diag3d_debug PASS +Test 050 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_rrfs_v1beta_debug -Checking test 049 fv3_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_rrfs_v1beta_debug +Checking test 051 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1409,14 +1439,14 @@ Checking test 049 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.695804 +The total amount of wall time = 190.521555 -Test 049 fv3_rrfs_v1beta_debug PASS +Test 051 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_rrfs_v1alpha_debug -Checking test 050 fv3_rrfs_v1alpha_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_rrfs_v1alpha_debug +Checking test 052 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1480,14 +1510,14 @@ Checking test 050 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.347190 +The total amount of wall time = 189.926142 -Test 050 fv3_rrfs_v1alpha_debug PASS +Test 052 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 051 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 053 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 @@ -1551,14 +1581,14 @@ Checking test 051 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 = 196.554379 +The total amount of wall time = 200.175546 -Test 051 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 053 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_42839/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_20766/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1572,11 +1602,11 @@ Checking test 052 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 = 355.426968 +The total amount of wall time = 373.746371 -Test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 2 19:41:42 UTC 2021 -Elapsed time: 00h:28m:27s. Have a nice day! +Mon Jul 19 20:21:19 UTC 2021 +Elapsed time: 00h:29m:27s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 4676cda093..764929fd64 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,25 +1,26 @@ -Wed Jun 2 19:03:51 UTC 2021 +Mon Jul 19 17:36:58 UTC 2021 Start Regression test -Compile 001 elapsed time 2202 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 2416 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp -Compile 003 elapsed time 770 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 1124 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 1558 seconds. APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -Compile 006 elapsed time 1170 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 1472 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 1035 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 473 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y -Compile 011 elapsed time 339 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 345 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 1104 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 320 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 921 seconds. APP=NG-GODAS -Compile 016 elapsed time 349 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 1086 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_control +Compile 001 elapsed time 2068 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 2419 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 584 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 1084 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 1346 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1151 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 350 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 285 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 290 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 932 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 345 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 971 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 363 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 1114 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -69,13 +70,13 @@ Checking test 001 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 = 102.685303 +[0] The total amount of wall time = 108.791290 Test 001 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -125,14 +126,14 @@ Checking test 002 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 = 66.882146 +[0] The total amount of wall time = 68.021659 Test 002 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_controlfrac -Checking test 003 cpld_controlfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_2threads +Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -181,14 +182,14 @@ Checking test 003 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.072888 +[0] The total amount of wall time = 98.238873 -Test 003 cpld_controlfrac PASS +Test 003 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restartfrac -Checking test 004 cpld_restartfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_decomp +Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -237,14 +238,14 @@ Checking test 004 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.721184 +[0] The total amount of wall time = 107.049875 -Test 004 cpld_restartfrac PASS +Test 004 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_2threads -Checking test 005 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_ca +Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -293,657 +294,26 @@ Checking test 005 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 = 97.319550 +[0] The total amount of wall time = 107.148826 -Test 005 cpld_2threads PASS +Test 005 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_decomp -Checking test 006 cpld_decomp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 100.928358 - -Test 006 cpld_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_ca -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_ca -Checking test 007 cpld_ca results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 102.836892 - -Test 007 cpld_ca PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_control_c192 -Checking test 008 cpld_control_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 421.909700 - -Test 008 cpld_control_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restart_c192 -Checking test 009 cpld_restart_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 315.244282 - -Test 009 cpld_restart_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_controlfrac_c192 -Checking test 010 cpld_controlfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 408.841865 - -Test 010 cpld_controlfrac_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restartfrac_c192 -Checking test 011 cpld_restartfrac_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 313.137351 - -Test 011 cpld_restartfrac_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_control_c384 -Checking test 012 cpld_control_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 1464.797495 - -Test 012 cpld_control_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restart_c384 -Checking test 013 cpld_restart_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 797.605987 - -Test 013 cpld_restart_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_controlfrac_c384 -Checking test 014 cpld_controlfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 1456.995138 - -Test 014 cpld_controlfrac_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restartfrac_c384 -Checking test 015 cpld_restartfrac_c384 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 796.873123 - -Test 015 cpld_restartfrac_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmark -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmark -Checking test 016 cpld_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 873.076608 - -Test 016 cpld_bmark PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmark -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restart_bmark -Checking test 017 cpld_restart_bmark results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_control_c192 +Checking test 006 cpld_control_c192 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -977,32 +347,29 @@ Checking test 017 cpld_restart_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 + 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 = 517.458034 +[0] The total amount of wall time = 416.884034 -Test 017 cpld_restart_bmark PASS +Test 006 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmarkfrac -Checking test 018 cpld_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_restart_c192 +Checking test 007 cpld_restart_c192 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1036,32 +403,29 @@ Checking test 018 cpld_bmarkfrac 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 - -[0] The total amount of wall time = 865.450011 - -Test 018 cpld_bmarkfrac PASS - + Comparing RESTART/iced.2016-10-05-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restart_bmarkfrac -Checking test 019 cpld_restart_bmarkfrac results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +[0] The total amount of wall time = 315.367503 + +Test 007 cpld_restart_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_control_c384 +Checking test 008 cpld_control_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1098,19 +462,29 @@ Checking test 019 cpld_restart_bmarkfrac 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 - -[0] The total amount of wall time = 516.698045 - -Test 019 cpld_restart_bmarkfrac PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmarkfrac_v16 -Checking test 020 cpld_bmarkfrac_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK + +[0] The total amount of wall time = 813.672812 + +Test 008 cpld_control_c384 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_restart_c384 +Checking test 009 cpld_restart_c384 results .... + Comparing sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK + Comparing atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1147,17 +521,17 @@ Checking test 020 cpld_bmarkfrac_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-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing RESTART/iced.2016-10-03-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -[0] The total amount of wall time = 818.175895 +[0] The total amount of wall time = 465.078186 -Test 020 cpld_bmarkfrac_v16 PASS +Test 009 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac_v16_nsst -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmarkfrac_v16_nsst -Checking test 021 cpld_bmarkfrac_v16_nsst results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_bmark_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_bmark_v16 +Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK @@ -1199,14 +573,14 @@ Checking test 021 cpld_bmarkfrac_v16_nsst 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 = 815.146112 +[0] The total amount of wall time = 688.783401 -Test 021 cpld_bmarkfrac_v16_nsst PASS +Test 010 cpld_bmark_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_restart_bmarkfrac_v16 -Checking test 022 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_bmark_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_restart_bmark_v16 +Checking test 011 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK @@ -1248,91 +622,16 @@ Checking test 022 cpld_restart_bmarkfrac_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 = 517.826578 - -Test 022 cpld_restart_bmarkfrac_v16 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmark_wave -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmark_wave -Checking test 023 cpld_bmark_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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 - -[0] The total amount of wall time = 1063.774298 +[0] The total amount of wall time = 433.867417 -Test 023 cpld_bmark_wave PASS +Test 011 cpld_restart_bmark_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmarkfrac_wave -Checking test 024 cpld_bmarkfrac_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.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-20210719/cpld_bmark_v16_nsst +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_bmark_v16_nsst +Checking test 012 cpld_bmark_v16_nsst results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1369,17 +668,17 @@ Checking test 024 cpld_bmarkfrac_wave 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 + 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 = 1051.289083 +[0] The total amount of wall time = 682.235948 -Test 024 cpld_bmarkfrac_wave PASS +Test 012 cpld_bmark_v16_nsst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmarkfrac_wave_v16 -Checking test 025 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_bmark_wave_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_bmark_wave_v16 +Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1423,14 +722,14 @@ Checking test 025 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 = 895.005548 +[0] The total amount of wall time = 775.564294 -Test 025 cpld_bmarkfrac_wave_v16 PASS +Test 013 cpld_bmark_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_bmarkfrac_wave_v16_noahmp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_bmarkfrac_wave_v16_noahmp -Checking test 026 cpld_bmarkfrac_wave_v16_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_bmark_wave_v16_p7b +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_bmark_wave_v16_p7b +Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK @@ -1474,14 +773,14 @@ Checking test 026 cpld_bmarkfrac_wave_v16_noahmp 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 = 921.069513 +[0] The total amount of wall time = 846.226590 -Test 026 cpld_bmarkfrac_wave_v16_noahmp PASS +Test 014 cpld_bmark_wave_v16_p7b PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_control_wave -Checking test 027 cpld_control_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_control_wave +Checking test 015 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1533,70 +832,14 @@ Checking test 027 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 = 125.343644 - -Test 027 cpld_control_wave PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_debug -Checking test 028 cpld_debug results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........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 - -[0] The total amount of wall time = 320.203097 +[0] The total amount of wall time = 122.594268 -Test 028 cpld_debug PASS +Test 015 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/cpld_debugfrac -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/cpld_debugfrac -Checking test 029 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/cpld_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/cpld_debug +Checking test 016 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1645,14 +888,14 @@ Checking test 029 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.450547 +[0] The total amount of wall time = 311.362705 -Test 029 cpld_debugfrac PASS +Test 016 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control -Checking test 030 control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control +Checking test 017 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1694,14 +937,14 @@ Checking test 030 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 169.559933 +[0] The total amount of wall time = 172.277684 -Test 030 control PASS +Test 017 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_decomp -Checking test 031 control_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_decomp +Checking test 018 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1743,14 +986,14 @@ Checking test 031 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 172.052975 +[0] The total amount of wall time = 176.028969 -Test 031 control_decomp PASS +Test 018 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_2threads -Checking test 032 control_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_2threads +Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1792,14 +1035,14 @@ Checking test 032 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 155.469536 +[0] The total amount of wall time = 157.959832 -Test 032 control_2threads PASS +Test 019 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_restart -Checking test 033 control_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_restart +Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1837,14 +1080,14 @@ Checking test 033 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 73.322045 +[0] The total amount of wall time = 73.352401 -Test 033 control_restart PASS +Test 020 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_CubedSphereGrid -Checking test 034 control_CubedSphereGrid results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1870,31 +1113,31 @@ Checking test 034 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 134.330193 +[0] The total amount of wall time = 135.903297 -Test 034 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_wrtGauss_netcdf_parallel -Checking test 035 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 197.030372 +[0] The total amount of wall time = 198.374582 -Test 035 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_c192 -Checking test 036 control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1904,14 +1147,14 @@ Checking test 036 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 541.276744 +[0] The total amount of wall time = 589.428135 -Test 036 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_c384 -Checking test 037 control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1921,14 +1164,14 @@ Checking test 037 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1017.580631 +[0] The total amount of wall time = 1035.296918 -Test 037 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_c384gdas -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_c384gdas -Checking test 038 control_c384gdas results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_c384gdas +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1970,14 +1213,14 @@ Checking test 038 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 878.417364 +[0] The total amount of wall time = 895.050599 -Test 038 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_stochy -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_stochy -Checking test 039 control_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_stochy +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1987,14 +1230,14 @@ Checking test 039 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 119.043235 +[0] The total amount of wall time = 122.007785 -Test 039 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ca -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_ca -Checking test 040 control_ca results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_ca +Checking test 027 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2004,14 +1247,14 @@ Checking test 040 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 116.571311 +[0] The total amount of wall time = 119.978056 -Test 040 control_ca PASS +Test 027 control_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lndp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_lndp -Checking test 041 control_lndp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lndp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2021,14 +1264,31 @@ Checking test 041 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 120.635834 +[0] The total amount of wall time = 122.976904 + +Test 028 control_lndp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lheatstrg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_lheatstrg +Checking test 029 control_lheatstrg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +[0] The total amount of wall time = 170.887148 -Test 041 control_lndp PASS +Test 029 control_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lheatstrg -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_lheatstrg -Checking test 042 control_lheatstrg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lseaspray +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_lseaspray +Checking test 030 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2038,14 +1298,14 @@ Checking test 042 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 167.981037 +[0] The total amount of wall time = 179.473790 -Test 042 control_lheatstrg PASS +Test 030 control_lseaspray PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_merra2 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_merra2 -Checking test 043 control_merra2 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_merra2 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_merra2 +Checking test 031 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2055,14 +1315,14 @@ Checking test 043 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 195.823413 +[0] The total amount of wall time = 198.751631 -Test 043 control_merra2 PASS +Test 031 control_merra2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_rrtmgp -Checking test 044 control_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_rrtmgp +Checking test 032 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2072,14 +1332,14 @@ Checking test 044 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 227.571561 +[0] The total amount of wall time = 233.795422 -Test 044 control_rrtmgp PASS +Test 032 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmg -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_csawmg -Checking test 045 control_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_csawmg +Checking test 033 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2089,14 +1349,14 @@ Checking test 045 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 304.348452 +[0] The total amount of wall time = 308.437398 -Test 045 control_csawmg PASS +Test 033 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmgt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_csawmgt -Checking test 046 control_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmgt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_csawmgt +Checking test 034 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2106,14 +1366,14 @@ Checking test 046 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 368.243809 +[0] The total amount of wall time = 375.796927 -Test 046 control_csawmgt PASS +Test 034 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_flake -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_flake -Checking test 047 control_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_flake +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_flake +Checking test 035 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2123,14 +1383,14 @@ Checking test 047 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 250.936238 +[0] The total amount of wall time = 252.178430 -Test 047 control_flake PASS +Test 035 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ugwpv1 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_ugwpv1 -Checking test 048 control_ugwpv1 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ugwpv1 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_ugwpv1 +Checking test 036 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2140,14 +1400,14 @@ Checking test 048 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 206.795508 +[0] The total amount of wall time = 209.546782 -Test 048 control_ugwpv1 PASS +Test 036 control_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ras -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_ras -Checking test 049 control_ras results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ras +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_ras +Checking test 037 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2157,14 +1417,14 @@ Checking test 049 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 195.626982 +[0] The total amount of wall time = 201.232889 -Test 049 control_ras PASS +Test 037 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_thompson -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_thompson -Checking test 050 control_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_thompson +Checking test 038 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2174,14 +1434,14 @@ Checking test 050 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 225.713151 +[0] The total amount of wall time = 235.958773 -Test 050 control_thompson PASS +Test 038 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_thompson_no_aero -Checking test 051 control_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_thompson_no_aero +Checking test 039 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2191,14 +1451,14 @@ Checking test 051 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 216.830575 +[0] The total amount of wall time = 226.039888 -Test 051 control_thompson_no_aero PASS +Test 039 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_noahmp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_noahmp -Checking test 052 control_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_noahmp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_noahmp +Checking test 040 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2208,40 +1468,40 @@ Checking test 052 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 197.469461 +[0] The total amount of wall time = 203.118102 -Test 052 control_noahmp PASS +Test 040 control_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_control -Checking test 053 regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_control +Checking test 041 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 = 346.397415 +[0] The total amount of wall time = 352.598230 -Test 053 regional_control PASS +Test 041 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_restart -Checking test 054 regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_restart +Checking test 042 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 = 200.158673 +[0] The total amount of wall time = 199.213023 -Test 054 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_quilt -Checking test 055 regional_quilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_quilt +Checking test 043 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2251,14 +1511,14 @@ Checking test 055 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 346.394350 +[0] The total amount of wall time = 347.553553 -Test 055 regional_quilt PASS +Test 043 regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_quilt_2threads -Checking test 056 regional_quilt_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_quilt_2threads +Checking test 044 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2268,14 +1528,14 @@ Checking test 056 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 189.582265 +[0] The total amount of wall time = 192.263551 -Test 056 regional_quilt_2threads PASS +Test 044 regional_quilt_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_quilt_hafs -Checking test 057 regional_quilt_hafs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_quilt_hafs +Checking test 045 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2283,28 +1543,28 @@ Checking test 057 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 344.498328 +[0] The total amount of wall time = 345.059452 -Test 057 regional_quilt_hafs PASS +Test 045 regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_quilt_netcdf_parallel -Checking test 058 regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_quilt_netcdf_parallel +Checking test 046 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 -[0] The total amount of wall time = 346.234588 +[0] The total amount of wall time = 348.692084 -Test 058 regional_quilt_netcdf_parallel PASS +Test 046 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_quilt_RRTMGP -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_quilt_RRTMGP -Checking test 059 regional_quilt_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_quilt_RRTMGP +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_quilt_RRTMGP +Checking test 047 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -2314,14 +1574,14 @@ Checking test 059 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 469.229745 +[0] The total amount of wall time = 471.171300 -Test 059 regional_quilt_RRTMGP PASS +Test 047 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_gsd -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_gsd -Checking test 060 fv3_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_gsd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_gsd +Checking test 048 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2409,14 +1669,14 @@ Checking test 060 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 198.273596 +[0] The total amount of wall time = 204.102029 -Test 060 fv3_gsd PASS +Test 048 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1alpha -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_rrfs_v1alpha -Checking test 061 fv3_rrfs_v1alpha results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_rrfs_v1alpha +Checking test 049 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2480,14 +1740,14 @@ Checking test 061 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.775399 +[0] The total amount of wall time = 104.544936 -Test 061 fv3_rrfs_v1alpha PASS +Test 049 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rap -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_rap -Checking test 062 fv3_rap results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rap +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_rap +Checking test 050 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2551,14 +1811,14 @@ Checking test 062 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.855122 +[0] The total amount of wall time = 104.456209 -Test 062 fv3_rap PASS +Test 050 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_hrrr -Checking test 063 fv3_hrrr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_hrrr +Checking test 051 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2622,14 +1882,14 @@ Checking test 063 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 100.328710 +[0] The total amount of wall time = 103.010182 -Test 063 fv3_hrrr PASS +Test 051 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_rrfs_v1beta -Checking test 064 fv3_rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_rrfs_v1beta +Checking test 052 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2693,14 +1953,14 @@ Checking test 064 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 = 102.636303 +[0] The total amount of wall time = 102.085184 -Test 064 fv3_rrfs_v1beta PASS +Test 052 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_HAFS_v0_hwrf_thompson -Checking test 065 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 @@ -2764,14 +2024,14 @@ Checking test 065 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.061051 +[0] The total amount of wall time = 174.524192 -Test 065 fv3_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-20210528/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 @@ -2785,40 +2045,40 @@ Checking test 066 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 = 318.773841 +[0] The total amount of wall time = 319.100512 -Test 066 fv3_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-20210528/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_debug -Checking test 067 control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_debug +Checking test 055 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 167.527491 +[0] The total amount of wall time = 167.662895 -Test 067 control_debug PASS +Test 055 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_2threads_debug -Checking test 068 control_2threads_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_2threads_debug +Checking test 056 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 155.094790 +[0] The total amount of wall time = 154.880337 -Test 068 control_2threads_debug PASS +Test 056 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_CubedSphereGrid_debug -Checking test 069 control_CubedSphereGrid_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_CubedSphereGrid_debug +Checking test 057 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2844,158 +2104,197 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 181.444918 +[0] The total amount of wall time = 180.925836 + +Test 057 control_CubedSphereGrid_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_wrtGauss_netcdf_parallel_debug +Checking test 058 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 170.767466 -Test 069 control_CubedSphereGrid_debug PASS +Test 058 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_wrtGauss_netcdf_parallel_debug -Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_stochy_debug +Checking test 059 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK + +[0] The total amount of wall time = 191.980926 + +Test 059 control_stochy_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_lndp_debug +Checking test 060 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +[0] The total amount of wall time = 171.977437 + +Test 060 control_lndp_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_lheatstrg_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_lheatstrg_debug +Checking test 061 control_lheatstrg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -[0] The total amount of wall time = 170.908025 +[0] The total amount of wall time = 166.925457 -Test 070 control_wrtGauss_netcdf_parallel_debug PASS +Test 061 control_lheatstrg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_stochy_debug -Checking test 071 control_stochy_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_merra2_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_merra2_debug +Checking test 062 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 191.068811 +[0] The total amount of wall time = 238.500482 -Test 071 control_stochy_debug PASS +Test 062 control_merra2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_lndp_debug -Checking test 072 control_lndp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_rrtmgp_debug +Checking test 063 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 171.535693 +[0] The total amount of wall time = 190.191954 -Test 072 control_lndp_debug PASS +Test 063 control_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_lheatstrg_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_lheatstrg_debug -Checking test 073 control_lheatstrg_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_csawmg_debug +Checking test 064 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 167.824733 +[0] The total amount of wall time = 283.878581 -Test 073 control_lheatstrg_debug PASS +Test 064 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_merra2_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_merra2_debug -Checking test 074 control_merra2_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_csawmgt_debug +Checking test 065 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 215.313299 +[0] The total amount of wall time = 319.487855 -Test 074 control_merra2_debug PASS +Test 065 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_rrtmgp_debug -Checking test 075 control_rrtmgp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_ugwpv1_debug +Checking test 066 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 189.175701 +[0] The total amount of wall time = 181.593320 -Test 075 control_rrtmgp_debug PASS +Test 066 control_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_csawmg_debug -Checking test 076 control_csawmg_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_ras_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_ras_debug +Checking test 067 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 259.580807 +[0] The total amount of wall time = 173.773642 -Test 076 control_csawmg_debug PASS +Test 067 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_csawmgt_debug -Checking test 077 control_csawmgt_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_thompson_debug +Checking test 068 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 297.397694 +[0] The total amount of wall time = 196.854277 -Test 077 control_csawmgt_debug PASS +Test 068 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_ugwpv1_debug -Checking test 078 control_ugwpv1_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_thompson_no_aero_debug +Checking test 069 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 181.788238 +[0] The total amount of wall time = 191.553271 -Test 078 control_ugwpv1_debug PASS +Test 069 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_ras_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_ras_debug -Checking test 079 control_ras_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_thompson_extdiag_debug +Checking test 070 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 169.830182 +[0] The total amount of wall time = 206.512508 -Test 079 control_ras_debug PASS +Test 070 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/regional_control_debug -Checking test 082 regional_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/regional_control_debug +Checking test 071 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 = 277.194977 +[0] The total amount of wall time = 279.785512 -Test 082 regional_control_debug PASS +Test 071 regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_gsd_debug -Checking test 083 fv3_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_gsd_debug +Checking test 072 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3059,14 +2358,14 @@ Checking test 083 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.234826 +[0] The total amount of wall time = 233.278409 -Test 083 fv3_gsd_debug PASS +Test 072 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_gsd_diag3d_debug -Checking test 084 fv3_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_gsd_diag3d_debug +Checking test 073 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3130,14 +2429,14 @@ Checking test 084 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 = 310.327542 +[0] The total amount of wall time = 304.670585 -Test 084 fv3_gsd_diag3d_debug PASS +Test 073 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_rrfs_v1beta_debug -Checking test 085 fv3_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_rrfs_v1beta_debug +Checking test 074 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3201,14 +2500,14 @@ Checking test 085 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 = 225.472331 +[0] The total amount of wall time = 225.380661 -Test 085 fv3_rrfs_v1beta_debug PASS +Test 074 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_rrfs_v1alpha_debug -Checking test 086 fv3_rrfs_v1alpha_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_rrfs_v1alpha_debug +Checking test 075 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3272,14 +2571,14 @@ Checking test 086 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 226.325008 +[0] The total amount of wall time = 225.368648 -Test 086 fv3_rrfs_v1alpha_debug PASS +Test 075 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 076 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 @@ -3343,14 +2642,14 @@ Checking test 087 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.084743 +[0] The total amount of wall time = 236.158162 -Test 087 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 076 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 077 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3364,213 +2663,228 @@ Checking test 088 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 = 435.409245 +[0] The total amount of wall time = 434.999103 -Test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 077 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_control_cfsr -Checking test 089 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 109.553204 +[0] The total amount of wall time = 110.022611 -Test 089 datm_control_cfsr PASS +Test 078 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_restart_cfsr -Checking test 090 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 -[0] The total amount of wall time = 77.212437 +[0] The total amount of wall time = 79.897833 -Test 090 datm_restart_cfsr PASS +Test 079 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_control_gefs -Checking test 091 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 -[0] The total amount of wall time = 101.413909 +[0] The total amount of wall time = 106.669037 -Test 091 datm_control_gefs PASS +Test 080 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_bulk_cfsr -Checking test 092 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 -[0] The total amount of wall time = 105.131574 +[0] The total amount of wall time = 108.412275 -Test 092 datm_bulk_cfsr PASS +Test 081 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_bulk_gefs -Checking test 093 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 -[0] The total amount of wall time = 101.814390 +[0] The total amount of wall time = 107.024577 -Test 093 datm_bulk_gefs PASS +Test 082 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_mx025_cfsr -Checking test 094 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 380.839377 +[0] The total amount of wall time = 359.099850 -Test 094 datm_mx025_cfsr PASS +Test 083 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_mx025_gefs -Checking test 095 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 375.668182 +[0] The total amount of wall time = 361.989908 -Test 095 datm_mx025_gefs PASS +Test 084 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_debug_cfsr -Checking test 096 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/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 -[0] The total amount of wall time = 301.433410 +[0] The total amount of wall time = 297.987583 -Test 096 datm_debug_cfsr PASS +Test 085 datm_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_control_cfsr -Checking test 097 datm_cdeps_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_control_cfsr +Checking test 086 datm_cdeps_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 = 173.844893 +[0] The total amount of wall time = 179.234223 -Test 097 datm_cdeps_control_cfsr PASS +Test 086 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_restart_cfsr -Checking test 098 datm_cdeps_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_restart_cfsr +Checking test 087 datm_cdeps_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 = 120.336417 +[0] The total amount of wall time = 118.885148 -Test 098 datm_cdeps_restart_cfsr PASS +Test 087 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_control_gefs -Checking test 099 datm_cdeps_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_control_gefs +Checking test 088 datm_cdeps_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 = 168.564892 +[0] The total amount of wall time = 174.327672 -Test 099 datm_cdeps_control_gefs PASS +Test 088 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_bulk_cfsr -Checking test 100 datm_cdeps_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_bulk_cfsr +Checking test 089 datm_cdeps_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 = 174.120278 +[0] The total amount of wall time = 177.473887 -Test 100 datm_cdeps_bulk_cfsr PASS +Test 089 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_bulk_gefs -Checking test 101 datm_cdeps_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_bulk_gefs +Checking test 090 datm_cdeps_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 = 167.627351 +[0] The total amount of wall time = 169.756760 -Test 101 datm_cdeps_bulk_gefs PASS +Test 090 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_mx025_gefs -Checking test 102 datm_cdeps_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_mx025_cfsr +Checking test 091 datm_cdeps_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_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + +[0] The total amount of wall time = 354.862622 + +Test 091 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_mx025_gefs +Checking test 092 datm_cdeps_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-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 365.768244 +[0] The total amount of wall time = 350.709698 -Test 102 datm_cdeps_mx025_gefs PASS +Test 092 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_multiple_files_cfsr -Checking test 103 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_multiple_files_cfsr +Checking test 093 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 173.622204 +[0] The total amount of wall time = 174.369303 -Test 103 datm_cdeps_multiple_files_cfsr PASS +Test 093 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/datm_cdeps_debug_cfsr -Checking test 104 datm_cdeps_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/datm_cdeps_debug_cfsr +Checking test 094 datm_cdeps_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 = 497.780700 +[0] The total amount of wall time = 493.438750 -Test 104 datm_cdeps_debug_cfsr PASS +Test 094 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210528/control_atmwav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_119859/control_atmwav -Checking test 105 control_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210719/control_atmwav +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_155991/control_atmwav +Checking test 095 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3612,11 +2926,11 @@ Checking test 105 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 363.617461 +[0] The total amount of wall time = 361.602306 -Test 105 control_atmwav PASS +Test 095 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 2 20:26:14 UTC 2021 -Elapsed time: 01h:22m:25s. Have a nice day! +Mon Jul 19 18:53:07 UTC 2021 +Elapsed time: 01h:16m:13s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 21bb4b1e89..8364c75ce8 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaemc/ubuntu-hpc:v1.3b +From noaaemc/ubuntu-hpc:v1.4b 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 48fae57925..345a33bddb 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -74,14 +74,14 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then - docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20210528 \ - && docker rmi -f minsukjinoaa/input-data:20210528 + docker volume rm -f DataVolume >/dev/null && + docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20210528 docker create -u builder -e "CI_TEST=true" -e "USER=builder" \ -e "RT_MACHINE=linux.gnu" -e "RT_COMPILER=gnu" \ -w "/home/builder/ufs-weather-model/tests" \ -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210528 \ - --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.3b \ + --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.4b \ /bin/bash -c "./utest -n ${TEST_NAME} -c ${TEST_CASE} -x" cd $GITHUB_WORKSPACE diff --git a/tests/ci/ci.test b/tests/ci/ci.test index 86dd4c3ca0..9d8b220dc1 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,4 +1,6 @@ +control +thr mpi dcp rst bit dbg regional_control thr dcp cpld_control -rst +rst dbg diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index 36c7c2bee0..3981e7bed4 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -13,8 +13,8 @@ result() { } # Declare variables -declare -A base fv3 mom6 cice ww3 stoch nems cmeps datm cdeps cmake -submodules="fv3 mom6 cice ww3 stoch nems cmeps datm cdeps cmake" +declare -A base fv3 mom6 cice ww3 stoch gocart nems cmeps datm cdeps cmake +submodules="fv3 mom6 cice ww3 stoch gocart nems cmeps datm cdeps cmake" comment='' ownerID=$1 @@ -43,6 +43,10 @@ stoch[repo]='https://github.com/noaa-psd/stochastic_physics' stoch[branch]='master' stoch[dir]='stochastic_physics' +gocart[repo]='https://github.com/GEOS-ESM/GOCART' +gocart[branch]='develop' +gocart[dir]='GOCART' + nems[repo]='https://github.com/NOAA-EMC/NEMS' nems[branch]='develop' nems[dir]='NEMS' diff --git a/tests/compile.sh b/tests/compile.sh index 811d196fa8..f89ba4768c 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -48,6 +48,7 @@ if [[ $MACHINE_ID == cheyenne.* ]] ; then BUILD_JOBS=${BUILD_JOBS:-3} elif [[ $MACHINE_ID == wcoss_dell_p3 ]] ; then BUILD_JOBS=${BUILD_JOBS:-1} + source $PATHTR/NEMS/src/conf/module-setup.sh.inc fi BUILD_JOBS=${BUILD_JOBS:-8} @@ -68,7 +69,7 @@ else # Load fv3 module module use $PATHTR/modulefiles modulefile="ufs_${MACHINE_ID}" - if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then + if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] && modulefile="ufs_${MACHINE_ID}_debug" fi module load $modulefile @@ -80,27 +81,7 @@ echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" # set CMAKE_FLAGS based on $MAKE_OPT -CMAKE_FLAGS='' - -if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDEBUG=ON -DCMAKE_BUILD_TYPE=Debug" -elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DREPRO=ON" -fi - -if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -D32BIT=ON" -fi - -if [[ "${MAKE_OPT}" == *"OPENMP=N"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DOPENMP=OFF" -fi - -if [[ "${MAKE_OPT}" == *"MULTI_GASES=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=ON" -else - CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=OFF" -fi +CMAKE_FLAGS=$MAKE_OPT # FIXME - create CCPP include directory before building FMS to avoid # gfortran warnings of non-existent include directory (adding @@ -109,55 +90,40 @@ fi # this line can be removed once FMS becomes a pre-installed library mkdir -p $PATHTR/FV3/ccpp/include -CMAKE_FLAGS="${CMAKE_FLAGS} -DMPI=ON" +CMAKE_FLAGS+=" -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" +if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then + CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Debug" +elif [[ "${MAKE_OPT}" == *"-DREPRO=ON"* ]]; then + CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Bitforbit" else - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" + CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Release" if [[ "${MACHINE_ID}" == "jet.intel" ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DSIMDMULTIARCH=ON" + CMAKE_FLAGS+=" -DSIMDMULTIARCH=ON" fi fi # Check if suites argument is provided or not set +ex -TEST=$( echo $MAKE_OPT | grep -e "SUITES=" ) +TEST=$( echo $MAKE_OPT | grep -e "-DCCPP_SUITES=" ) if [[ $? -eq 0 ]]; then - CCPP_SUITES=$( echo $MAKE_OPT | sed 's/.*SUITES=//' | sed 's/ .*//' ) - echo "Compiling suites ${CCPP_SUITES}" + SUITES=$( echo $MAKE_OPT | sed 's/.*-DCCPP_SUITES=//' | sed 's/ .*//' ) + echo "Compiling suites ${SUITES}" fi set -ex # Valid applications -if [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then - echo "MAKE_OPT = ${MAKE_OPT}" - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATM" -fi - -if [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" -fi - -if [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" -fi - -if [[ "${MAKE_OPT}" == *"APP=S2SW"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2SW -DMOM6SOLO=ON" -fi -if [[ "${MAKE_OPT}" == *"APP=NG-GODAS"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=NG-GODAS" +if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then + CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi -if [[ "${MAKE_OPT}" == *"APP=NG-GODAS-NEMSDATM"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=NG-GODAS-NEMSDATM" +if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then + CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") +echo "CMAKE_FLAGS = ${CMAKE_FLAGS}" if [ $clean_before = YES ] ; then rm -rf ${BUILD_DIR} @@ -166,13 +132,12 @@ fi export BUILD_VERBOSE=1 export BUILD_DIR export BUILD_JOBS -export CCPP_SUITES export CMAKE_FLAGS bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -if [[ "${MAKE_OPT}" == "DEBUG=Y" ]]; then +if [[ "${MAKE_OPT}" == "-DDEBUG=ON" ]]; then cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} else cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} @@ -183,5 +148,5 @@ if [ $clean_after = YES ] ; then fi elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Compiling ${MAKE_OPT} finished" -echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${MAKE_OPT}" > compile${COMPILE_NR}_time.log +echo "Elapsed time $elapsed seconds. Compiling ${CMAKE_FLAGS} finished" +echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_NR}_time.log diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ac6c87270b..2290d13fe0 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -202,7 +202,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then 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 + TASKS_cpl_thrd=120; TPN_cpl_thrd=12; 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" @@ -357,7 +357,7 @@ elif [[ $MACHINE_ID = stampede.* ]]; then 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 383" - TASKS_cpl_thrd=120; TPN_cpl_thrd=48; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 + TASKS_cpl_thrd=120; TPN_cpl_thrd=24; 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" @@ -468,11 +468,13 @@ export NWAT=6 export DNATS=1 export DO_SAT_ADJ=.T. export LHEATSTRG=.F. +export LSEASPRAY=.F. export LGFDLMPRAD=.F. export EFFR_IN=.F. # Thompson MP export LRADAR=.T. export LTAEROSOL=.T. +export EXT_DIAG_THOMPSON=.F. # GWD export LDIAG_UGWP=.F. @@ -512,7 +514,12 @@ export IMFSHALCNV=2 export HWRF_SAMFSHAL=.F. export IMFDEEPCNV=2 export HWRF_SAMFDEEP=.F. -export RAS=.F. +export RAS=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.true. + +# Aerosol convective scavenging +export FSCAV_AERO="'*:0.0'" # SFC export DO_MYJSFC=.F. @@ -533,6 +540,7 @@ export H2O_PHYS=.F. export CPL=.F. +export CPLCHM=.F. export CPLFLX=.F. export CPLWAV=.F. export CPLWAV2ATM=.F. @@ -566,6 +574,7 @@ export FHCYC=24 export FHROT=0 export LDIAG3D=.F. export QDIAG3D=.F. +export PRINT_DIFF_PGR=.false. export MAX_OUTPUT_FIELDS=300 # Stochastic physics @@ -602,7 +611,7 @@ export WINDLINE='$' export CURRLINE='$' export NFGRIDS=0 export NMGRIDS=1 -export ww3gline="'glo_30m' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export ww3gline="'glo_30m' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" # Regional export WRITE_RESTART_WITH_BCS=.false. @@ -667,24 +676,23 @@ export coupling_interval_slow_sec=${CPL_SLOW} export coupling_interval_fast_sec=${CPL_FAST} export RESTART_N=${FHMAX} -export CPLMODE='nems_orig' +export CPLMODE='nems_frac' export cap_dbug_flag="0" export use_coldstart="false" export use_mommesh="true" export RUNTYPE='startup' +export CICERUNTYPE='initial' +export eps_imesh='1.0e-1' # 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 FRAC_GRID='.T.' export CCPP_SUITE="FV3_GFS_2017_coupled" export INPUT_NML=input.mom6_ccpp.nml.IN export FIELD_TABLE="field_table" export DIAG_TABLE="diag_table_template" +export DIAG_TABLE_ADDITIONAL='' + export FHROT='0' export NSOUT='-1' export FDIAG='6' @@ -742,9 +750,12 @@ export RESTART_EXT='.false.' export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' +# default non-mushy thermo +export KTHERM=1 +export TFREEZE_OPTION='linear_salt' #wave -export ww3gline="'glo_1deg' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export ww3gline="'glo_1deg' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" export WW3OUTPUTTYPE=' 1' # checkpoint restarts @@ -823,6 +834,8 @@ export cap_dbug_flag="0" export use_coldstart="false" export use_mommesh="true" export RUNTYPE='startup' +export CICERUNTYPE='initial' +export eps_imesh='1.0e-1' export flux_convergence='0.0' export flux_iteration='2' export flux_scheme='0' @@ -861,6 +874,9 @@ export RESTART_EXT='.false.' export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' +# default non-mushy thermo +export KTHERM=1 +export TFREEZE_OPTION='linear_salt' export BL_SUFFIX="" export RT_SUFFIX="" } @@ -927,6 +943,8 @@ export cap_dbug_flag="0" export use_coldstart="false" export use_mommesh="true" export RUNTYPE='startup' +export CICERUNTYPE='initial' +export eps_imesh='1.0e-1' export flux_convergence='0.0' export flux_iteration='2' export flux_scheme='0' @@ -973,6 +991,9 @@ export RESTART_EXT='.false.' export FRAZIL_FWSALT='.true.' # default to write CICE average history files export CICE_HIST_AVG='.true.' +# default non-mushy thermo +export KTHERM=1 +export TFREEZE_OPTION='linear_salt' export BL_SUFFIX="" export RT_SUFFIX="" } diff --git a/tests/edit_inputs.sh b/tests/edit_inputs.sh index bb5e163b5a..a99f795484 100755 --- a/tests/edit_inputs.sh +++ b/tests/edit_inputs.sh @@ -3,16 +3,14 @@ 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 )) - # 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/MONTH_INIT/$SMONTH/g" \ + -e "s/DAY_INIT/$SDAY/g" \ -e "s/DT_CICE/$DT_CICE/g" \ -e "s/CICEGRID/$CICEGRID/g" \ -e "s/CICEMASK/$CICEMASK/g" \ @@ -21,14 +19,16 @@ function edit_ice_in { -e "s/NY_GLB/$NY_GLB/g" \ -e "s/BLCKX/$BLCKX/g" \ -e "s/BLCKY/$BLCKY/g" \ - -e "s/RUNTYPE/$RUNTYPE/g" \ + -e "s/CICERUNTYPE/$CICERUNTYPE/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" + -e "s/FRAZIL_FWSALT/$FRAZIL_FWSALT/g" \ + -e "s/TFREEZE_OPTION/$TFREEZE_OPTION/g" \ + -e "s/KTHERM/$KTHERM/g" } function edit_mom_input { @@ -57,11 +57,11 @@ function edit_diag_table { -e "s/SDAY/$SDAY/g" } -function edit_ww3_input { +function edit_ww3_input { SDATEWW3="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" EDATEWW3="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" - #note EDATE should be SDATE+FHMAX, but since this requires adding ndate + #note EDATE should be SDATE+FHMAX, but since this requires adding ndate #a work around is to just put a date long in the future as the actual end time is #determined by the driver DT_2_RST_WAV="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" @@ -97,5 +97,5 @@ function edit_ww3_input { -e "s/DTRST/0/g" \ -e "s/DT_2_RST/$DT_2_RST_WAV/g" \ -e "s/RST_END/$EDATEWW3/g" \ - -e "s/RST_2_END/$EDATEWW3/g" + -e "s/RST_2_END/$EDATEWW3/g" } diff --git a/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN b/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN index d92d8476a8..cdb4345deb 100644 --- a/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN +++ b/tests/fv3_conf/c96_HAFS_v0_hwrf_run.IN @@ -29,7 +29,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f7 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 @[INPUTDATA_ROOT]/FV3_input_data_hafs/GENPARM.TBL . diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 old mode 100755 new mode 100644 diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 45b98159b5..add8226654 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -74,10 +74,8 @@ cp @[INPUTDATA_ROOT]/${inputdir}/INPUT/solarconstant_noaa_an.txt . cp @[INPUTDATA_ROOT]/${inputdir}/global_o3prdlos.f77 . cp @[INPUTDATA_ROOT]/${inputdir}/global_h2o_pltc.f77 ./global_h2oprdlos.f77 cp @[INPUTDATA_ROOT]/${inputdir}/*grb . -cp @[INPUTDATA_ROOT]/${inputdir}/data_table . cp @[INPUTDATA_ROOT]/${inputdir}/diag_table_gfsv16 ./diag_table cp @[INPUTDATA_ROOT]/${inputdir}/field_table_gfsv16 ./field_table -cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $NEW_DIAGTABLE != '' ]; then cp @[INPUTDATA_ROOT]/${inputdir}/$NEW_DIAGTABLE ./diag_table @@ -142,3 +140,11 @@ if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi + +#prognostic aerosols +if [ $CPLCHM = .T. ]; then + cp @[INPUTDATA_ROOT]/GOCART/diag_table . + cp @[INPUTDATA_ROOT]/GOCART/field_table . + cp @[INPUTDATA_ROOT]/GOCART/rc/* . + ln -sf @[INPUTDATA_ROOT]/GOCART/ExtData . +fi diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index 793bc7cbb4..2378edcd3c 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -1,26 +1,18 @@ mkdir INPUT RESTART history MOM6_OUTPUT -if [[ $ATMRES == 'C96' ]]; then - FV3_DIR=FV3_input_data -else - FV3_DIR=FV3_input_data${ATMRES#C} -fi +FV3_DIR=FV3_input_data${ATMRES#C} ICERES="${OCNRES:0:1}.${OCNRES:1}" -if [[ ${FRAC_GRID_INPUT} = .F. ]]; then - FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]/INPUT -elif [[ @[NPZ] == '127' ]]; then - FV3_IC=FV3_input_frac/BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]_L@[NPZ]/INPUT -else - FV3_IC=FV3_input_frac/BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]/INPUT -fi +FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs_p6/@[ATMRES]_L@[NPZ]/INPUT +MOM_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da +ICE_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc #unused unless 35D run is active -WW3_IC=FV3_input_frac/BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/wav/gwes_30m +WW3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/wav_p6/gwes_30m # FV3 fixed input +cp @[INPUTDATA_ROOT_BMIC]/FV3_fix/INPUT/co2historicaldata_201*.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 @@ -33,14 +25,8 @@ 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 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 - cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/oro_data*.nc ./INPUT - cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT -fi +cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/oro_data*.nc ./INPUT +cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc # MOM6 fixed input @@ -55,18 +41,18 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . if [[ $RT35D == .T. ]]; then - cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + cp ${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m fi fi # 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_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da/MOM*.nc ./INPUT + cp ${FV3_IC}/sfc_data*.nc ./INPUT + cp ${FV3_IC}/gfs_data*.nc ./INPUT + cp ${MOM_IC}/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed - cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc/cice5_model_@[ICERES].*.nc ./cice_model.res.nc + cp ${ICE_IC}/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/fv3_conf/cpld_bmark_tiled_run.IN b/tests/fv3_conf/cpld_bmark_tiled_run.IN index 0ba5eb28d7..a9dcb4432d 100644 --- a/tests/fv3_conf/cpld_bmark_tiled_run.IN +++ b/tests/fv3_conf/cpld_bmark_tiled_run.IN @@ -8,13 +8,15 @@ fi ICERES="${OCNRES:0:1}.${OCNRES:1}" -FV3_IC=FV3_input_frac/BM7_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]_L@[NPZ]/INPUT +FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs_p7/@[ATMRES]_L@[NPZ]/INPUT +MOM_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da +ICE_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc #unused unless 35D run is active -WW3_IC=FV3_input_frac/BM7_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/wav/gwes_30m +WW3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/wav_p7/gwes_30m # FV3 fixed input +cp @[INPUTDATA_ROOT_BMIC]/FV3_fix/INPUT/co2historicaldata_201*.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 . cp @[INPUTDATA_ROOT]/${FV3_DIR}/global_glacier.2x2.grb . @@ -56,19 +58,19 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . if [[ $RT35D == .T. ]]; then - cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + cp ${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m fi fi # 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]/${FV3_IC}/gfs_ctrl.nc ./INPUT - cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da/MOM*.nc ./INPUT + cp ${FV3_IC}/sfc_data*.nc ./INPUT + cp ${FV3_IC}/gfs_data*.nc ./INPUT + cp ${FV3_IC}/gfs_ctrl.nc ./INPUT + cp ${MOM_IC}/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed - cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc/cice5_model_@[ICERES].*.nc ./cice_model.res.nc + cp ${ICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc else # NOTE: bmark-wave model is not currently tested for restart # Restart files @@ -101,3 +103,30 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} ./INPUT ls -1 "./INPUT/"${RFILE}>ice.restart_file fi + +#inline post +if [ $WRITE_DOPOST = .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 + +#merra2 +if [ $IAER = 1011 ]; then + 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 +fi + +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc + cp @[INPUTDATA_ROOT]/FV3_input_data384/INPUT_L127/oro_data_ls* ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_data384/INPUT_L127/oro_data_ss* ./INPUT +fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index ac79246a18..d15edc45aa 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -27,14 +27,8 @@ 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 cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/oro_data*.nc ./INPUT cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/gfs_ctrl.nc ./INPUT -fi cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/grid_spec.nc ./INPUT/@[ATMRES]_mosaic.nc # MOM6 fixed input @@ -55,13 +49,8 @@ SUFFIX=${RT_SUFFIX} # No restart if [ $WARM_START = .F. ]; then # ICs - if [ ${FRAC_GRID_INPUT} = .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]_L@[NPZ].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT - cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT - fi + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/sfc_data*.nc ./INPUT + cp @[INPUTDATA_ROOT]/FV3_input_frac/@[ATMRES]_L@[NPZ].mx@[OCNRES]_frac/gfs_data*.nc ./INPUT 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/fv3_conf/cpt_run.IN b/tests/fv3_conf/cpt_run.IN deleted file mode 100644 index 8828656bed..0000000000 --- a/tests/fv3_conf/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/csawmg3shoc127_run.IN b/tests/fv3_conf/csawmg3shoc127_run.IN deleted file mode 100644 index 8828656bed..0000000000 --- a/tests/fv3_conf/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/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 073cdb250c..432a10feac 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -36,7 +36,6 @@ 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 diff --git a/tests/fv3_conf/csawmgshoc_run.IN b/tests/fv3_conf/csawmgshoc_run.IN index 6c7bbd8ed3..1088e961c6 100644 --- a/tests/fv3_conf/csawmgshoc_run.IN +++ b/tests/fv3_conf/csawmgshoc_run.IN @@ -17,7 +17,6 @@ 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 diff --git a/tests/fv3_conf/fv3_gocart.IN b/tests/fv3_conf/fv3_gocart.IN index 13743f7f97..ec458c5e8e 100644 --- a/tests/fv3_conf/fv3_gocart.IN +++ b/tests/fv3_conf/fv3_gocart.IN @@ -16,7 +16,6 @@ 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 diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne old mode 100755 new mode 100644 diff --git a/tests/fv3_conf/fv3_regional_run.IN b/tests/fv3_conf/fv3_regional_run.IN deleted file mode 100644 index cd2d7cd3a7..0000000000 --- a/tests/fv3_conf/fv3_regional_run.IN +++ /dev/null @@ -1,18 +0,0 @@ - -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 @[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 diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index e407c29bfb..63720eb701 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -49,7 +49,6 @@ if [ $H2O_PHYS = .T. ]; then fi cp @[INPUTDATA_ROOT]/${inputdir}/*grb . cp @[INPUTDATA_ROOT]/${inputdir}/*_table . -cp @[INPUTDATA_ROOT]/${inputdir}/*configure . if [ $CPLWAV = .T. ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index 4d6c4feb6f..f3f0a4b057 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -4,7 +4,9 @@ #SBATCH --account=@[ACCNR] #SBATCH --partition=@[PARTITION] #SBATCH --qos=@[QUEUE] -#SBATCH --ntasks=@[TASKS] +##SBATCH --ntasks=@[TASKS] +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] #SBATCH --time=@[WLCLK] #SBATCH --job-name="@[JBNME]" ### #SBATCH --exclusive @@ -32,7 +34,7 @@ export PSM_SHAREDCONTEXTS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 -srun ./fv3.exe +srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` 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 df350032bc..67f5c3d602 100644 --- a/tests/fv3_conf/gf_thompson_run.IN +++ b/tests/fv3_conf/gf_thompson_run.IN @@ -13,7 +13,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/*_table . 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 @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index b4c626db5a..cdc76e07be 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -34,7 +34,6 @@ 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.* . diff --git a/tests/fv3_conf/gfs_v15_run.IN b/tests/fv3_conf/gfs_v15_run.IN index 6318e9b7b6..f15e2e1e9a 100644 --- a/tests/fv3_conf/gfs_v15_run.IN +++ b/tests/fv3_conf/gfs_v15_run.IN @@ -16,7 +16,6 @@ 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/* . diff --git a/tests/fv3_conf/gfs_v16_flake_run.IN b/tests/fv3_conf/gfs_v16_flake_run.IN index 3e57770190..c9977360a5 100644 --- a/tests/fv3_conf/gfs_v16_flake_run.IN +++ b/tests/fv3_conf/gfs_v16_flake_run.IN @@ -17,4 +17,3 @@ 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/gfs_v16_run.IN b/tests/fv3_conf/gfs_v16_run.IN index 8bc6f6db15..85470a1a01 100644 --- a/tests/fv3_conf/gfs_v16_run.IN +++ b/tests/fv3_conf/gfs_v16_run.IN @@ -18,7 +18,6 @@ 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 . 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 diff --git a/tests/fv3_conf/gfs_v16_run_c192L127.IN b/tests/fv3_conf/gfs_v16_run_c192L127.IN index d552738fe9..817f3e03c0 100644 --- a/tests/fv3_conf/gfs_v16_run_c192L127.IN +++ b/tests/fv3_conf/gfs_v16_run_c192L127.IN @@ -16,8 +16,8 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/global_o3prdlos.f77 ./global_o3p 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* . + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/fv3_conf/gfsv16_csawmg_run.IN b/tests/fv3_conf/gfsv16_csawmg_run.IN index 9b380ec48a..a5f119f5cb 100644 --- a/tests/fv3_conf/gfsv16_csawmg_run.IN +++ b/tests/fv3_conf/gfsv16_csawmg_run.IN @@ -12,13 +12,12 @@ 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/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 diff --git a/tests/fv3_conf/gfsv16_ugwpv1_run.IN b/tests/fv3_conf/gfsv16_ugwpv1_run.IN deleted file mode 100644 index 2c58446c6a..0000000000 --- a/tests/fv3_conf/gfsv16_ugwpv1_run.IN +++ /dev/null @@ -1,22 +0,0 @@ -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/gocart.IN b/tests/fv3_conf/gocart.IN index 6b65e20ee2..264881e928 100644 --- a/tests/fv3_conf/gocart.IN +++ b/tests/fv3_conf/gocart.IN @@ -17,7 +17,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/*_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 diff --git a/tests/fv3_conf/gsd_run.IN b/tests/fv3_conf/gsd_run.IN index c1cdf8cfb2..45b7ef2278 100644 --- a/tests/fv3_conf/gsd_run.IN +++ b/tests/fv3_conf/gsd_run.IN @@ -54,7 +54,6 @@ else echo "ERROR, no field table configured for IMP_PHYSICS=${IMP_PHYSICS}" exit 1 fi -cp @[INPUTDATA_ROOT]/FV3_input_data/*configure . # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables if [ $IMP_PHYSICS = 8 ]; then diff --git a/tests/fv3_conf/gsd_sar_run.IN b/tests/fv3_conf/gsd_sar_run.IN index 7effc0cae3..0da12555ef 100644 --- a/tests/fv3_conf/gsd_sar_run.IN +++ b/tests/fv3_conf/gsd_sar_run.IN @@ -15,8 +15,6 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/*_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 @[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/qr_acr_qsV2.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . diff --git a/tests/fv3_conf/multigases_run.IN b/tests/fv3_conf/multigases_run.IN index 3f476c77bc..6ba3121712 100644 --- a/tests/fv3_conf/multigases_run.IN +++ b/tests/fv3_conf/multigases_run.IN @@ -20,7 +20,6 @@ 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 diff --git a/tests/parm/c96_HAFS_v0_hwrf.nml.IN b/tests/parm/c96_HAFS_v0_hwrf.nml.IN index d6620fa53e..e1c1409cdd 100644 --- a/tests/parm/c96_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/c96_HAFS_v0_hwrf.nml.IN @@ -116,7 +116,6 @@ 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 @@ -151,6 +150,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index 71b2da5acb..03828b0bb6 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -8,6 +8,7 @@ &diag_manager_nml prepend_date = .false. + max_output_fields = @[MAX_OUTPUT_FIELDS] / &fms_io_nml @@ -61,7 +62,7 @@ deflate_level=1 nwat = 6 na_init = @[NA_INIT] d_ext = 0. - dnats = 1 + dnats = @[DNATS] fv_sg_adj = 450 d2_bg = 0. nord = 2 @@ -107,13 +108,14 @@ deflate_level=1 / &gfs_physics_nml - fhzero = 6 + fhzero = @[FHZERO] h2o_phys = .true. - ldiag3d = .false. + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + print_diff_pgr = @[PRINT_DIFF_PGR] fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -138,11 +140,13 @@ deflate_level=1 satmedmf = .true. isatmedmf = 1 lheatstrg = @[LHEATSTRG] - random_clds = .false. + lseaspray = @[LSEASPRAY] + random_clds = @[RANDOM_CLDS] trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 + cnvcld = @[CNVCLD] + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + ras = @[RAS] cdmbgwd = @[CDMBWD] prslrd0 = 0. ivegsrc = 1 @@ -169,6 +173,7 @@ deflate_level=1 psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 lgfdlmprad = .true. + cplchm = @[CPLCHM] cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] effr_in = .true. @@ -180,6 +185,7 @@ deflate_level=1 do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] + fscav_aero = @[FSCAV_AERO] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/control_ca.nml.IN b/tests/parm/control_ca.nml.IN index 41322a6f9d..8dac0db21d 100644 --- a/tests/parm/control_ca.nml.IN +++ b/tests/parm/control_ca.nml.IN @@ -3,10 +3,6 @@ chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] - fhmax = 384 - fhout = 3 - fhmaxhf = 120 - fhouthf = 1 ccpp_suite = '@[CCPP_SUITE]' / @@ -119,7 +115,6 @@ deflate_level=1 fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -143,7 +138,8 @@ deflate_level=1 hybedmf = .false. satmedmf = .true. isatmedmf = 1 - lheatstrg = .false. + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. @@ -187,15 +183,24 @@ deflate_level=1 do_ca = @[DO_CA] ca_sgs = @[CA_SGS] ca_global = @[CA_GLOBAL] - nlives = @[NLIVES] - nseed = @[NSEED] - nthresh = @[NTHRESH] - ca_trigger = .true. - ca_smooth = @[CA_SMOOTH] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] - nsmooth = @[NSMOOTH] - ca_amplitude = @[CA_AMPLITUDE] + nca = 1 + scells = 2600 + tlives = 1800 + nseed = 100 + nfracseed = 0.5 + rcell = 0.72 + 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 / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index 3799e18e43..9dc66026f3 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -114,7 +114,6 @@ deflate_level=1 use_ufo = .true. pre_rad = .false. crtrh = 0.93,0.90,0.95 - ncld = 2 imp_physics = 10 pdfcld = .false. fhswr = 3600. @@ -136,6 +135,7 @@ deflate_level=1 hybedmf = .false. satmedmf = .true. lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .true. trans_trac = .true. cnvcld = .false. diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index 6f53b10422..1cb03c067b 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -113,7 +113,6 @@ deflate_level=1 fhcyc = 24 use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -138,6 +137,7 @@ deflate_level=1 satmedmf = .true. isatmedmf = 1 lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. diff --git a/tests/parm/control_gdas.nml.IN b/tests/parm/control_gdas.nml.IN index 06dcd01431..b94f9c91fb 100644 --- a/tests/parm/control_gdas.nml.IN +++ b/tests/parm/control_gdas.nml.IN @@ -135,7 +135,6 @@ deflate_level=1 fhcyc = 1 use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -159,7 +158,8 @@ deflate_level=1 hybedmf = .false. satmedmf = .true. isatmedmf = 1 - lheatstrg = .false. + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. diff --git a/tests/parm/control_noahmp.nml.IN b/tests/parm/control_noahmp.nml.IN index 9955a6fd9a..6715264811 100644 --- a/tests/parm/control_noahmp.nml.IN +++ b/tests/parm/control_noahmp.nml.IN @@ -113,7 +113,6 @@ deflate_level=1 fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -138,6 +137,7 @@ deflate_level=1 satmedmf = .true. isatmedmf = 1 lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. diff --git a/tests/parm/control_rrtmgp.nml.IN b/tests/parm/control_rrtmgp.nml.IN index 469aee8113..5ea5517159 100644 --- a/tests/parm/control_rrtmgp.nml.IN +++ b/tests/parm/control_rrtmgp.nml.IN @@ -113,14 +113,13 @@ deflate_level=1 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 + iaer = @[IAER] icliq_sw = 2 iovr = 3 ico2 = 2 @@ -138,6 +137,7 @@ deflate_level=1 satmedmf = .true. isatmedmf = 1 lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. @@ -164,7 +164,7 @@ deflate_level=1 debug = .false. oz_phys = .F. oz_phys_2015 = .T. - nstf_name = 2,0,0,0,0 + nstf_name = @[NSTF_NAME] nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 @@ -189,8 +189,12 @@ deflate_level=1 rrtmgp_nGptsLW = 128 rrtmgp_nBandsLW = 16 rrtmgp_nBandsSW = 14 - doG_cldoptics = .true. - rrtmgp_nrghice = 3 + doGP_cldoptics_LUT = .true. + doGP_lwscat = .true. + use_LW_jacobian = .true. + damp_LW_fluxadj = .true. + lfnc_k = 3125. + lfnc_p0 = 60000. lsoil_lsm = 4 do_mynnedmf = .false. do_mynnsfclay = .false. diff --git a/tests/parm/control_thompson.nml.IN b/tests/parm/control_thompson.nml.IN index bf3c26120b..9a8b7f7767 100644 --- a/tests/parm/control_thompson.nml.IN +++ b/tests/parm/control_thompson.nml.IN @@ -113,11 +113,11 @@ deflate_level=1 fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = @[IMP_PHYSICS] ltaerosol = @[LTAEROSOL] lradar = @[LRADAR] ttendlim = 0.004 + ext_diag_thompson = @[EXT_DIAG_THOMPSON] pdfcld = .false. fhswr = 3600. fhlwr = 3600. @@ -141,6 +141,7 @@ deflate_level=1 satmedmf = .true. isatmedmf = 1 lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. diff --git a/tests/parm/control_ugwpv1.nml.IN b/tests/parm/control_ugwpv1.nml.IN index ce4579d890..ee99351106 100644 --- a/tests/parm/control_ugwpv1.nml.IN +++ b/tests/parm/control_ugwpv1.nml.IN @@ -113,7 +113,6 @@ deflate_level=1 fhcyc = 24 use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -138,6 +137,7 @@ deflate_level=1 satmedmf = .true. isatmedmf = 1 lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index 9529a1b715..ceedd38898 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -124,7 +124,6 @@ use_ufo = .true. pre_rad = .false. crtrh = 0.93,0.90,0.95 - ncld = 2 imp_physics = 10 pdfcld = .false. fhswr = 3600. @@ -146,6 +145,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .true. trans_trac = .true. cnvcld = .true. diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index 33667b7cc5..9a13f30494 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -125,7 +125,6 @@ use_ufo = .true. pre_rad = .false. crtrh = 0.98,0.98,0.90 - ncld = 2 imp_physics = 10 pdfcld = .false. fhswr = 3600. @@ -147,6 +146,7 @@ hybedmf = .false. satmedmf = .false. lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .true. trans_trac = .true. cnvcld = .false. diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index 8c3286378b..f6b7bdb540 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -124,7 +124,6 @@ use_ufo = .true. pre_rad = .false. crtrh = 1.00,1.00,0.95 - ncld = 2 imp_physics = 10 pdfcld = .false. fhswr = 3600. @@ -146,6 +145,7 @@ hybedmf = .false. satmedmf = .false. lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .true. trans_trac = .true. cnvcld = .false. diff --git a/tests/parm/datm_cdeps_configure.IN b/tests/parm/datm_cdeps_configure.IN index 08c9f2c5de..0c8207c583 100644 --- a/tests/parm/datm_cdeps_configure.IN +++ b/tests/parm/datm_cdeps_configure.IN @@ -1,6 +1,4 @@ print_esmf: .true. -total_member: 1 -PE_MEMBER01: @[TASKS] start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] diff --git a/tests/parm/datm_configure.IN b/tests/parm/datm_configure.IN index c64ec17b3f..b486f663ea 100644 --- a/tests/parm/datm_configure.IN +++ b/tests/parm/datm_configure.IN @@ -1,6 +1,4 @@ -total_member: 1 print_esmf: .true. -PE_MEMBER01: @[TASKS] start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] @@ -8,11 +6,10 @@ start_hour: @[SHOUR] start_minute: 0 start_second: 0 nhours_fcst: @[FHMAX] -RUN_CONTINUE: .false. -ENS_SPS: .false. -calendar: 'julian' fhrot: @[FHROT] +calendar: 'julian' + dt_atmos: @[DT_ATMOS] atm_coupling_interval_sec: @[coupling_interval_fast_sec] diff --git a/tests/parm/diag_additional_gfs_v16_dtend b/tests/parm/diag_additional_control_dtend similarity index 54% rename from tests/parm/diag_additional_gfs_v16_dtend rename to tests/parm/diag_additional_control_dtend index 014fcb3e4a..6107eb51ad 100644 --- a/tests/parm/diag_additional_gfs_v16_dtend +++ b/tests/parm/diag_additional_control_dtend @@ -1,51 +1,51 @@ # This file contains diag_table entries for 3D diagnostic tendencies from the fv3_gfs_v16 suite. # It should be appended to the end of the diag_table before execution of the test. -# Old d*3dt variables, renamed from their new names: +# Old d*3dt variables with new names: -"gfs_phys", "dtend_temp_lw", "dt3dt_lw", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_sw", "dt3dt_sw", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_pbl", "dt3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_deepcnv", "dt3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_shalcnv", "dt3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_mp", "dt3dt_mp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_orogwd", "dt3dt_orogwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_rdamp", "dt3dt_rdamp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_cnvgwd", "dt3dt_cnvgwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_phys", "dt3dt_phys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_pbl", "du3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_pbl", "dv3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_orogwd", "du3dt_orogwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_orogwd", "dv3dt_orogwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_deepcnv", "du3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_deepcnv", "dv3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_cnvgwd", "du3dt_cnvgwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_cnvgwd", "dv3dt_cnvgwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_rdamp", "du3dt_rdamp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_rdamp", "dv3dt_damp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_shalcnv", "du3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_shalcnv", "dv3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_phys", "du3dt_phys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_phys", "dv3dt_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_lw", "dtend_temp_lw", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_sw", "dtend_temp_sw", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_pbl", "dtend_temp_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_deepcnv", "dtend_temp_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_shalcnv", "dtend_temp_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_mp", "dtend_temp_mp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_orogwd", "dtend_temp_orogwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_rdamp", "dtend_temp_rdamp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_cnvgwd", "dtend_temp_cnvgwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_phys", "dtend_temp_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_pbl", "dtend_u_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_pbl", "dtend_v_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_orogwd", "dtend_u_orogwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_orogwd", "dtend_v_orogwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_deepcnv", "dtend_u_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_deepcnv", "dtend_v_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_cnvgwd", "dtend_u_cnvgwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_cnvgwd", "dtend_v_cnvgwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_rdamp", "dtend_u_rdamp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_rdamp", "dtend_v_rdamp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_shalcnv", "dtend_u_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_shalcnv", "dtend_v_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_phys", "dtend_u_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_phys", "dtend_v_phys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_temp_nophys", "dt3dt_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_u_nophys", "du3dt_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_v_nophys", "dv3dt_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_temp_nophys", "dtend_temp_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_u_nophys", "dtend_u_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_v_nophys", "dtend_v_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_pbl", "dq3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_deepcnv", "dq3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_shalcnv", "dq3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_mp", "dq3dt_mp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_pbl", "dq3dt_o3pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_prodloss", "dq3dt_o3prodloss", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_o3mix", "dq3dt_o3mix", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_temp", "dq3dt_o3temp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_o3column", "dq3dt_o3column", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_phys", "dq3dt_phys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_phys", "dq3dt_o3phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_pbl", "dtend_qv_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_deepcnv", "dtend_qv_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_shalcnv", "dtend_qv_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_mp", "dtend_qv_mp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_pbl", "dtend_o3_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_prodloss", "dtend_o3_prodloss", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_o3mix", "dtend_o3_o3mix", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_temp", "dtend_o3_temp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_o3column", "dtend_o3_o3column", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_phys", "dtend_qv_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_phys", "dtend_o3_phys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_qv_nophys", "dq3dt_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_o3_nophys", "dq3dt_o3nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_qv_nophys", "dtend_qv_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_o3_nophys", "dtend_o3_nophys", "fv3_history", "all", .false., "none", 2 # New dtend variables that were not in the d*3dt implementation: diff --git a/tests/parm/diag_additional_gsd_dtend b/tests/parm/diag_additional_gsd_dtend index d7cd6affe9..5b9429b232 100644 --- a/tests/parm/diag_additional_gsd_dtend +++ b/tests/parm/diag_additional_gsd_dtend @@ -1,51 +1,51 @@ # This file contains diag_table entries for 3D diagnostic tendencies from the fv3_gsd_v0 suite. # It should be appended to the end of the diag_table before execution of the test. -# Old d*3dt variables, renamed from their new names: +# Old d*3dt variables with new names: -"gfs_phys", "dtend_temp_lw", "dt3dt_lw", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_sw", "dt3dt_sw", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_pbl", "dt3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_deepcnv", "dt3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_shalcnv", "dt3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_mp", "dt3dt_mp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_orogwd", "dt3dt_orogwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_rdamp", "dt3dt_rdamp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_cnvgwd", "dt3dt_cnvgwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_temp_phys", "dt3dt_phys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_pbl", "du3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_pbl", "dv3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_orogwd", "du3dt_orogwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_orogwd", "dv3dt_orogwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_deepcnv", "du3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_deepcnv", "dv3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_cnvgwd", "du3dt_cnvgwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_cnvgwd", "dv3dt_cnvgwd", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_rdamp", "du3dt_rdamp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_rdamp", "dv3dt_damp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_shalcnv", "du3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_shalcnv", "dv3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_u_phys", "du3dt_phys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_v_phys", "dv3dt_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_lw", "dtend_temp_lw", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_sw", "dtend_temp_sw", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_pbl", "dtend_temp_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_deepcnv", "dtend_temp_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_shalcnv", "dtend_temp_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_mp", "dtend_temp_mp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_orogwd", "dtend_temp_orogwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_rdamp", "dtend_temp_rdamp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_cnvgwd", "dtend_temp_cnvgwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_temp_phys", "dtend_temp_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_pbl", "dtend_u_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_pbl", "dtend_v_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_orogwd", "dtend_u_orogwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_orogwd", "dtend_v_orogwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_deepcnv", "dtend_u_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_deepcnv", "dtend_v_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_cnvgwd", "dtend_u_cnvgwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_cnvgwd", "dtend_v_cnvgwd", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_rdamp", "dtend_u_rdamp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_rdamp", "dtend_v_rdamp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_shalcnv", "dtend_u_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_shalcnv", "dtend_v_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_u_phys", "dtend_u_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_v_phys", "dtend_v_phys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_temp_nophys", "dt3dt_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_u_nophys", "du3dt_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_v_nophys", "dv3dt_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_temp_nophys", "dtend_temp_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_u_nophys", "dtend_u_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_v_nophys", "dtend_v_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_pbl", "dq3dt_pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_deepcnv", "dq3dt_deepcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_shalcnv", "dq3dt_shalcnv", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_mp", "dq3dt_mp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_pbl", "dq3dt_o3pbl", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_prodloss", "dq3dt_o3prodloss", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_o3mix", "dq3dt_o3mix", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_temp", "dq3dt_o3temp", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_o3column", "dq3dt_o3column", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_qv_phys", "dq3dt_phys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_phys", "dq3dt_o3phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_pbl", "dtend_qv_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_deepcnv", "dtend_qv_deepcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_shalcnv", "dtend_qv_shalcnv", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_mp", "dtend_qv_mp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_pbl", "dtend_o3_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_prodloss", "dtend_o3_prodloss", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_o3mix", "dtend_o3_o3mix", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_temp", "dtend_o3_temp", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_o3column", "dtend_o3_o3column", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_qv_phys", "dtend_qv_phys", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "dtend_o3_phys", "dtend_o3_phys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_qv_nophys", "dq3dt_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_o3_nophys", "dq3dt_o3nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_qv_nophys", "dtend_qv_nophys", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dtend_o3_nophys", "dtend_o3_nophys", "fv3_history", "all", .false., "none", 2 # New dtend variables that were not in the d*3dt implementation: @@ -103,7 +103,6 @@ "gfs_phys", "dtend_water_nc_phys", "dtend_water_nc_phys", "fv3_history", "all", .false., "none", 2 "gfs_phys", "dtend_ice_nc_phys", "dtend_ice_nc_phys", "fv3_history", "all", .false., "none", 2 "gfs_phys", "dtend_rain_nc_phys", "dtend_rain_nc_phys", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "dtend_o3_phys", "dtend_o3_phys", "fv3_history", "all", .false., "none", 2 "gfs_phys", "dtend_liq_aero_phys", "dtend_liq_aero_phys", "fv3_history", "all", .false., "none", 2 "gfs_phys", "dtend_ice_aero_phys", "dtend_ice_aero_phys", "fv3_history", "all", .false., "none", 2 "gfs_phys", "dtend_sgs_tke_phys", "dtend_sgs_tke_phys", "fv3_history", "all", .false., "none", 2 @@ -115,7 +114,6 @@ "gfs_dyn", "dtend_water_nc_nophys", "dtend_water_nc_nophys", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "dtend_ice_nc_nophys", "dtend_ice_nc_nophys", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "dtend_rain_nc_nophys", "dtend_rain_nc_nophys", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "dtend_o3_nophys", "dtend_o3_nophys", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "dtend_liq_aero_nophys", "dtend_liq_aero_nophys", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "dtend_ice_aero_nophys", "dtend_ice_aero_nophys", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "dtend_sgs_tke_nophys", "dtend_sgs_tke_nophys", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table_bmark_template b/tests/parm/diag_table_bmark_template deleted file mode 100644 index f5e547a4f8..0000000000 --- a/tests/parm/diag_table_bmark_template +++ /dev/null @@ -1,273 +0,0 @@ -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_bmark_v16_merra2_template b/tests/parm/diag_table_bmark_v16_merra2_template new file mode 100644 index 0000000000..09d8cc5bba --- /dev/null +++ b/tests/parm/diag_table_bmark_v16_merra2_template @@ -0,0 +1,278 @@ +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", "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", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "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_dyn", "cld_amt", "cld_amt", "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", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfnh", "presnh", "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_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 + +"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", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SS_AOD_550", "ss_aod550", "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_bmark_v16_template b/tests/parm/diag_table_bmark_v16_template index a47879cfa6..e68c59c3cb 100644 --- a/tests/parm/diag_table_bmark_v16_template +++ b/tests/parm/diag_table_bmark_v16_template @@ -64,176 +64,177 @@ SYEAR SMONTH SDAY 00 0 0 "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_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", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "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_dyn", "cld_amt", "cld_amt", "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", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfnh", "presnh", "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_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_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 +"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 + +"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 #============================================================================================= # diff --git a/tests/parm/esg_HAFS_v0_hwrf-model_configure.IN b/tests/parm/esg_HAFS_v0_hwrf-model_configure.IN index e96850bfa2..d3d3ed196d 100644 --- a/tests/parm/esg_HAFS_v0_hwrf-model_configure.IN +++ b/tests/parm/esg_HAFS_v0_hwrf-model_configure.IN @@ -1,5 +1,4 @@ -total_member: 1 -PE_MEMBER01: 80 +print_esmf: .false. start_year: 2020 start_month: 08 start_day: 10 @@ -38,5 +37,3 @@ nfhout: 3 nfhmax_hf: 12 nfhout_hf: 1 nsout: -1 - -print_esmf: .false. diff --git a/tests/parm/esg_HAFS_v0_hwrf.nml.IN b/tests/parm/esg_HAFS_v0_hwrf.nml.IN index fef58925a9..92f597424e 100644 --- a/tests/parm/esg_HAFS_v0_hwrf.nml.IN +++ b/tests/parm/esg_HAFS_v0_hwrf.nml.IN @@ -125,7 +125,6 @@ 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 @@ -160,6 +159,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 993a5d8c61..71b5fe7f56 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -693,6 +693,22 @@ canonical_units: W m-2 - standard_name: land_mask canonical_units: 1 + - standard_name: inst_cloud_frac_levels + canonical_units: 1 + - standard_name: inst_ice_nonconv_tendency_levels + canonical_units: kg m-2 s-1 + - standard_name: inst_liq_nonconv_tendency_levels + canonical_units: kg m-2 s-1 + - standard_name: inst_surface_soil_wetness + canonical_units: 1 + - standard_name: lake_fraction + canonical_units: 1 + - standard_name: ice_fraction_in_atm + canonical_units: 1 + - standard_name: ocean_fraction + canonical_units: 1 + - standard_name: surface_snow_area_fraction + canonical_units: 1 # #----------------------------------- # WW3 import diff --git a/tests/parm/gsd.nml.IN b/tests/parm/gsd.nml.IN index e51db42683..8352ff62d3 100644 --- a/tests/parm/gsd.nml.IN +++ b/tests/parm/gsd.nml.IN @@ -115,7 +115,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = @[IMP_PHYSICS] ltaerosol = @[LTAEROSOL] lradar = @[LRADAR] @@ -143,6 +142,7 @@ satmedmf = @[SATMEDMF] isatmedmf = 1 lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] do_mynnedmf = @[DO_MYNNEDMF] do_mynnsfclay = @[DO_MYNNSFCLAY] effr_in = .true. diff --git a/tests/parm/gsd_rrtmgp.nml.IN b/tests/parm/gsd_rrtmgp.nml.IN index 72bc6661f9..b9d970d619 100644 --- a/tests/parm/gsd_rrtmgp.nml.IN +++ b/tests/parm/gsd_rrtmgp.nml.IN @@ -115,7 +115,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = @[IMP_PHYSICS] ltaerosol = @[LTAEROSOL] lradar = @[LRADAR] @@ -143,6 +142,7 @@ satmedmf = @[SATMEDMF] isatmedmf = 1 lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] do_mynnedmf = @[DO_MYNNEDMF] do_mynnsfclay = @[DO_MYNNSFCLAY] effr_in = .true. diff --git a/tests/parm/gsd_sar-model_configure.IN b/tests/parm/gsd_sar-model_configure.IN index 2b418c6297..fd8ce66b41 100644 --- a/tests/parm/gsd_sar-model_configure.IN +++ b/tests/parm/gsd_sar-model_configure.IN @@ -1,5 +1,4 @@ -total_member: 1 -PE_MEMBER01: 24 +print_esmf: .false. start_year: 2019 start_month: 05 start_day: 20 @@ -13,7 +12,6 @@ restart_interval: 0 output_1st_tstep_rst: .false. quilting: .true. -print_esmf: .false. write_groups: 1 write_tasks_per_group: 4 num_files: 2 diff --git a/tests/parm/gsd_sar.nml.IN b/tests/parm/gsd_sar.nml.IN index 3740b91e02..7829e9ace0 100644 --- a/tests/parm/gsd_sar.nml.IN +++ b/tests/parm/gsd_sar.nml.IN @@ -136,7 +136,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 8 ! ttendlim = 0.005 ttendlim = 50.0 @@ -161,7 +160,8 @@ dspheat = .true. hybedmf = .false. satmedmf = .false. - lheatstrg = .F. + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] do_mynnedmf = .true. do_mynnsfclay = .false. effr_in = .true. diff --git a/tests/parm/ice_in_template b/tests/parm/ice_in_template index 69cc172b0d..6c954cb2bc 100644 --- a/tests/parm/ice_in_template +++ b/tests/parm/ice_in_template @@ -2,11 +2,12 @@ days_per_year = 365 use_leap_years = .true. year_init = YEAR_INIT - istep0 = ISTEP0 + month_init = MONTH_INIT + day_init = DAY_INIT dt = DT_CICE npt = 999 ndtd = 1 - runtype = 'RUNTYPE' + runtype = 'CICERUNTYPE' runid = 'RUNID' ice_ic = 'cice_model.res.nc' restart = .true. @@ -32,7 +33,6 @@ 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 @@ -49,7 +49,6 @@ grid_type = 'tripole' grid_file = 'CICEGRID' kmt_file = 'CICEMASK' - use_bathymetry = .false. kcatbound = 0 ncat = 5 nfsd = 1 @@ -60,17 +59,9 @@ / &tracer_nml - n_aero = 0 - 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. + tr_FY = .false. restart_FY = .false. tr_lvl = .true. restart_lvl = .false. @@ -88,7 +79,7 @@ &thermo_nml kitd = 1 - ktherm = 1 + ktherm = KTHERM conduct = 'MU71' a_rapid_mode = 0.5e-3 Rac_rapid_mode = 10.0 @@ -159,30 +150,8 @@ fbot_xfer_type = 'constant' update_ocn_f = FRAZIL_FWSALT l_mpond_fresh = .false. - tfrz_option = 'linear_salt' + tfrz_option = 'TFREEZE_OPTION' 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 @@ -203,152 +172,6 @@ / &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 @@ -464,8 +287,8 @@ f_daidtd = 'x' f_dagedtt = 'x' f_dagedtd = 'x' - f_mlt_onset = 'mdhxx' - f_frz_onset = 'mdhxx' + f_mlt_onset = 'x' + f_frz_onset = 'x' f_hisnap = 'x' f_aisnap = 'x' f_trsig = 'x' @@ -523,65 +346,11 @@ 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' +&icefields_bgc_nml / diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index b88fa4559d..9224bcf55c 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -122,7 +122,6 @@ fhcyc = 24 use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -146,7 +145,8 @@ hybedmf = .false. satmedmf = .true. isatmedmf = 1 - lheatstrg = .false. + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .true. diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_v16_p7b.nml.IN similarity index 76% rename from tests/parm/input.benchmark_ccpp.nml.IN rename to tests/parm/input.benchmark_v16_p7b.nml.IN index 95073e3bc6..001ec4fedc 100644 --- a/tests/parm/input.benchmark_ccpp.nml.IN +++ b/tests/parm/input.benchmark_v16_p7b.nml.IN @@ -38,18 +38,19 @@ ntiles = 6, npz = @[NPZ] dz_min = @[DZ_MIN] + psm_bc = @[PSM_BC] 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 @@ -69,7 +70,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 @@ -103,24 +104,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 @@ -128,7 +114,7 @@ / &gfs_physics_nml - fhzero = 6 + fhzero = @[FHZERO] oz_phys = .false. oz_phys_2015 = .true. h2o_phys = .true. @@ -136,16 +122,15 @@ 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 + ialb = @[IALB] + iems = @[IEMS] + iaer = @[IAER] + icliq_sw = 2 + iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -157,9 +142,9 @@ 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. @@ -171,23 +156,23 @@ ivegsrc = 1 isot = 1 lsoil = 4 - lsm = 1 - iopt_dveg = 1 - iopt_crs = 1 + lsm = @[LSM] + iopt_dveg = @[IOPT_DVEG] + iopt_crs = @[IOPT_CRS] iopt_btr = 1 iopt_run = 1 iopt_sfc = 1 iopt_frz = 1 iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 + iopt_rad = @[IOPT_RAD] + iopt_alb = @[IOPT_ALB] iopt_snf = 4 iopt_tbot = 2 - iopt_stc = 1 + iopt_stc = @[IOPT_STC] debug = .false. - nstf_name = 0,0,0,0,0 frac_grid = @[FRAC_GRID] - nst_anl = .false. + nstf_name = @[NSTF_NAME] + nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 lgfdlmprad = .true. @@ -196,9 +181,16 @@ do_ugwp = .false. do_tofd = .false. cplflx = .T. - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - min_seaice = @[MIN_SEAICE] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + min_seaice = @[MIN_SEAICE] + gwd_opt = 2 + do_ugwp_v0 = .false. + do_ugwp_v1 = @[DO_UGWP_V1] + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + / &gfdl_cloud_microphysics_nml @@ -248,6 +240,7 @@ fix_negative = .true. icloud_f = 1 mp_time = 150. + reiflag = 2 / @@ -263,10 +256,10 @@ FNSNOC = "global_snoclim.1.875.grb", FNZORC = "igbp", FNALBC = @[FNALBC] - FNALBC2 = "global_albedo4.1x1.grb", + FNALBC2 = @[FNALBC2] FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] FNSMCC = @[FNSMCC] @@ -274,21 +267,21 @@ FNTSFA = "", FNACNA = "", FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] FNABSC = @[FNABSC] LDEBUG =.false., FSMCL(2) = 99999 FSMCL(3) = 99999 FSMCL(4) = 99999 - LANDICE = .true. + LANDICE = @[LANDICE] FTSFS = 90 FAISL = 99999 FAISS = 99999 FSNOL = 99999 FSNOS = 99999 - FSICL = 99999 + FSICL = @[FSICL] FSICS = 99999 FTSFL = 99999 FVETL = 99999 @@ -310,6 +303,29 @@ &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 = 1 + 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' +/ + &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 65203ce5d7..381db409a4 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -128,7 +128,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 1 imp_physics = 99 pdfcld = .false. fhswr = 3600. @@ -150,6 +149,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .true. trans_trac = .false. cnvcld = .true. @@ -195,15 +195,14 @@ do_ca = @[DO_CA] ca_sgs = @[CA_SGS] ca_global = @[CA_GLOBAL] - ncells = 5 - nlives = 30 + scells = 2600 + tlives = 1800 nseed = 1000000 nfracseed = 0.5 - nthresh = 0. + rcell = 0.72 ca_trigger = .true. ca_entr = .false. ca_closure = .false. - ca_global = .false. nca_g = 1 ncells_g = 1 nlives_g = 100 diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index ee08c8883f..24903c8cc9 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -116,7 +116,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -138,6 +137,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .false. cnvcld = .true. diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index 0cf0ff02cb..0690ba2bf2 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -1,6 +1,4 @@ -total_member: @[ENS_NUM] print_esmf: .true. -PE_MEMBER01: @[TASKS] start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] @@ -8,11 +6,11 @@ start_hour: @[SHOUR] start_minute: 0 start_second: 0 nhours_fcst: @[FHMAX] +fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] calendar: 'julian' restart_interval: @[RESTART_INTERVAL] -fhrot: @[FHROT] output_1st_tstep_rst: .false. atm_coupling_interval_sec: @[coupling_interval_fast_sec] diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN old mode 100755 new mode 100644 index 67cea774d7..32ed703164 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -1,8 +1,4 @@ print_esmf: .true. - -total_member: 1 -PE_MEMBER01: @[TASKS] - start_year: 2018 start_month: 10 start_day: 15 @@ -10,6 +6,7 @@ start_hour: 00 start_minute: 0 start_second: 0 nhours_fcst: 24 + dt_atmos: 225 calendar: 'julian' restart_interval: 0 diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN old mode 100755 new mode 100644 index bff09cf44b..c954612bed --- a/tests/parm/model_configure_regional.IN +++ b/tests/parm/model_configure_regional.IN @@ -1,6 +1,4 @@ print_esmf: .true. -PE_MEMBER01: @[TASKS] - start_year: 2018 start_month: 10 start_day: 15 diff --git a/tests/parm/multi_gases.nml.IN b/tests/parm/multi_gases.nml.IN index 02b8acb21c..cd1126af89 100644 --- a/tests/parm/multi_gases.nml.IN +++ b/tests/parm/multi_gases.nml.IN @@ -125,7 +125,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 1 imp_physics = 99 pdfcld = .false. fhswr = 3600. @@ -147,6 +146,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .true. trans_trac = .false. cnvcld = .true. diff --git a/tests/parm/nems.configure.atm_aerosols.IN b/tests/parm/nems.configure.atm_aerosols.IN new file mode 100644 index 0000000000..cbf9bd856d --- /dev/null +++ b/tests/parm/nems.configure.atm_aerosols.IN @@ -0,0 +1,34 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# EARTH # +EARTH_component_list: ATM CHM +EARTH_attributes:: + Verbosity = 0 +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_attributes:: + Verbosity = 0 +:: + +# Run Sequence # +runSeq:: + @@[coupling_interval_sec] + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + @ +:: diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 80dee17527..2019093325 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -101,4 +101,5 @@ ALLCOMP_attributes:: dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] :: diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_wave.IN index 5bb3443d54..b0d2756b2b 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_wave.IN @@ -115,4 +115,5 @@ ALLCOMP_attributes:: dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] :: diff --git a/tests/parm/nems.configure.datm.IN b/tests/parm/nems.configure.datm.IN index 7b973f4c1f..ccf8bd03da 100644 --- a/tests/parm/nems.configure.datm.IN +++ b/tests/parm/nems.configure.datm.IN @@ -101,6 +101,7 @@ ALLCOMP_attributes:: dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] coldair_outbreak_mod = .false. flux_convergence = @[flux_convergence] flux_max_iteration = @[flux_iteration] diff --git a/tests/parm/nems.configure.datm_cdeps.IN b/tests/parm/nems.configure.datm_cdeps.IN index 964d93f360..791238413b 100644 --- a/tests/parm/nems.configure.datm_cdeps.IN +++ b/tests/parm/nems.configure.datm_cdeps.IN @@ -106,6 +106,7 @@ ALLCOMP_attributes:: dbug_flag = @[cap_dbug_flag] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] coldair_outbreak_mod = .false. flds_wiso = .false. flux_convergence = @[flux_convergence] diff --git a/tests/parm/params_grib2_tbl_new b/tests/parm/params_grib2_tbl_new old mode 100755 new mode 100644 index e84973b74e..07db84e1ee --- a/tests/parm/params_grib2_tbl_new +++ b/tests/parm/params_grib2_tbl_new @@ -30,6 +30,7 @@ 0 20 108 0 ALBGRD 0 20 107 0 ALBSAT 10 0 38 0 ALCWH + 0 14 204 1 ALD2 0 20 110 0 ALEGRD 0 20 109 0 ALESAT 10 0 39 0 ALRRC @@ -46,6 +47,7 @@ 0 20 5 0 ANPEMFLX 0 20 4 0 ANPMFLX 10 3 197 1 AOHFLX + 0 3 21 0 AOSGSO 3 1 20 0 AOT06 3 1 21 0 AOT08 3 1 22 0 AOT16 @@ -55,7 +57,6 @@ 0 0 21 0 APTMP 0 1 221 1 ARAIN 0 20 8 0 AREMFLX - 0 3 21 0 ASGSO 0 3 24 0 ASGSO 10 3 198 1 ASHFL 0 20 60 0 ASNCON @@ -157,8 +158,8 @@ 3 1 16 0 CLDRAD 3 2 3 0 CLDTYPE 0 1 235 1 CLLMR + 0 1 22 0 CLMR 3 0 7 0 CLOUDM - 0 1 22 0 CLWMR 0 2 216 1 CNGWDU 0 2 217 1 CNGWDV 0 3 209 1 CNVDEMF @@ -285,16 +286,19 @@ 0 4 194 1 DUVB 0 4 12 0 DWUVR 0 2 9 0 DZDT + 0 7 207 1 E3KH 3 2 11 0 EAODR 3 5 5 0 EBSDSSTS 3 5 4 0 EBSSTSTD 0 19 30 0 EDPARM 0 7 204 1 EFHL + 0 3 222 1 EFSH 0 7 9 0 EHLX 4 2 1 0 ELCDEN 4 0 1 0 ELECTMP 10 3 194 1 ELEV 0 19 238 1 ELLINX + 0 0 205 1 ELMELT 0 191 197 1 ELONN 0 191 193 1 ELON 0 1 211 1 EMNP @@ -302,6 +306,7 @@ 0 19 218 1 EPSR 10 3 252 1 EROSNP 1 0 3 0 ESCT + 0 2 233 1 ESHR 0 7 205 1 ESP 3 1 0 0 ESTP 3 1 4 0 ESTUGRD @@ -349,8 +354,8 @@ 0 1 43 0 FRAIN 0 1 202 1 FRAIN 10 0 63 0 FREWWW + 10 0 17 0 FRICVW 0 2 30 0 FRICV - 10 0 17 0 FRICV 0 2 197 1 FRICV 0 1 227 1 FROZR 2 3 24 0 FRSTINX @@ -524,9 +529,9 @@ 10 0 24 0 MAXWH 0 6 4 0 MCDC 0 1 26 0 MCONV - 0 1 197 1 MCONV 0 6 40 0 MDCCWD 0 1 38 0 MDIVER + 0 1 197 1 MDIV 0 1 112 0 MDLWGVA 0 1 109 0 MDLWHVA 0 1 115 0 MDLWSVA @@ -539,6 +544,7 @@ 0 19 3 0 MIXHT 0 19 204 1 MIXLY 0 1 2 0 MIXR + 0 7 212 1 MLFC 0 191 195 1 MLYNO 0 1 114 0 MMLWGDA 0 1 111 0 MMLWHDA @@ -555,7 +561,6 @@ 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 @@ -813,6 +818,7 @@ 3 192 53 0 SBTAGR8 3 192 54 0 SBTAGR9 3 0 2 0 SBTMP + 0 7 210 1 SCCP 4 2 10 0 SCINT 0 1 84 0 SCLIWC 0 1 83 0 SCLLWC @@ -862,8 +868,10 @@ 0 7 13 0 SHWINX 10 2 3 0 SICED 4 9 1 0 SIGHAL + 0 7 209 1 SIGH 4 9 2 0 SIGPAR 4 9 0 0 SIGPED + 0 7 211 1 SIGT 0 19 217 1 SIPD 0 0 17 0 SKINT 3 5 1 0 SKSSTMP @@ -948,6 +956,7 @@ 10 3 199 1 SSTT 0 6 35 0 SSWTC 0 19 200 1 STORPROB + 0 7 208 1 STPC 0 2 4 0 STRM 0 1 87 0 STRPRATE 0 6 33 0 SUNSD @@ -1086,6 +1095,8 @@ 0 1 119 0 UCSCLW 0 0 28 0 UCTMP 0 3 29 0 UDRATE + 0 2 236 1 UEID + 0 2 234 1 UESH 0 2 17 0 UFLX 0 2 2 0 UGRD 0 2 23 0 UGUST @@ -1132,9 +1143,11 @@ 2 0 231 1 VEGMIN 2 0 210 1 VEGT 2 0 4 0 VEG + 0 2 237 1 VEID 4 1 1 0 VEL1 4 1 2 0 VEL2 4 1 3 0 VEL3 + 0 2 235 1 VESH 0 2 18 0 VFLX 0 6 48 0 VFRCICE 0 6 49 0 VFRCIW @@ -1247,4 +1260,3 @@ 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-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index 50ab5a8509..a78cfffe27 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -1,6 +1,6 @@ 2 -224 -259 +219 +260 PRSLEV 32769 ncep_nco @@ -874,7 +874,7 @@ MCONV_ON_ISOBARIC_SFC 1 tmpl4_0 MCONV -NCEP +? ? isobaric_sfc 0 @@ -1202,11 +1202,11 @@ isobaric_sfc ? ? 153 -CLWMR_ON_ISOBARIC_SFC +CLMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -CLWMR +CLMR ? ? isobaric_sfc @@ -4125,11 +4125,11 @@ surface ? ? 124 -CLWMR_ON_HYBRID_LVL +CLMR_ON_HYBRID_LVL ? 1 tmpl4_0 -CLWMR +CLMR ? ? hybrid_lvl @@ -4532,8 +4532,8 @@ surface ? ? 410 -GSD_VIS_ON_CLOUD_TOP -GSD_visibility on cloud top +GSD_VIS_ON_SURFACE +GSD_visibility on surface 1 tmpl4_0 VIS @@ -6942,7 +6942,7 @@ MCONV_ON_SPEC_PRES_ABOVE_GRND 1 tmpl4_0 MCONV -NCEP +? ? spec_pres_above_grnd 0 @@ -8422,7 +8422,7 @@ MCONV_ON_ENTIRE_ATMOS 1 tmpl4_0 MCONV -NCEP +? ? entire_atmos_single_lyr 0 @@ -9083,8 +9083,8 @@ spec_hgt_lvl_above_grnd ? ? 423 -MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa -hourly maximum Upward Vertical Velocity between 10-100hpa +MAX_MAXUVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa 1 tmpl4_8 MAXUVV @@ -9120,8 +9120,8 @@ isobaric_sfc ? ? 424 -MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa -hourly maximum Downward Vertical Velocity between 10-100hpa +MAX_MAXDVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa 1 tmpl4_8 MAXDVV @@ -9156,6 +9156,43 @@ isobaric_sfc ? ? ? +508 +MAX_PRATE_ON_SURFACE +Maximum Precipitation Rate on surface +1 +tmpl4_8 +PRATE +? +MAX +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? 444 LTNG_ON_SURFACE lightning @@ -10838,8 +10875,8 @@ surface ? ? 423 -MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa -hourly maximum Upward Vertical Velocity between 10-100hpa +MAX_MAXUVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa 1 tmpl4_8 MAXUVV @@ -10875,8 +10912,8 @@ isobaric_sfc ? ? 424 -MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa -hourly maximum Downward Vertical Velocity between 10-100hpa +MAX_MAXDVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa 1 tmpl4_8 MAXDVV @@ -12429,11 +12466,11 @@ surface ? ? 124 -CLWMR_ON_HYBRID_LVL +CLMR_ON_HYBRID_LVL ? 1 tmpl4_0 -CLWMR +CLMR ? ? hybrid_lvl @@ -14432,7 +14469,7 @@ MCONV_ON_SPEC_PRES_ABOVE_GRND 1 tmpl4_0 MCONV -NCEP +? ? spec_pres_above_grnd 0 @@ -17682,43 +17719,6 @@ surface ? ? ? -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 ? @@ -17756,151 +17756,3 @@ surface ? ? ? -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 index 03e551e5d7..d60fabd68e 100644 --- a/tests/parm/postxconfig-NT-hafs.txt +++ b/tests/parm/postxconfig-NT-hafs.txt @@ -1,5 +1,5 @@ 1 -88 +89 HURPRS 32769 ncep_nco @@ -387,11 +387,11 @@ isobaric_sfc ? ? 153 -CLWMR_ON_ISOBARIC_SFC +CLMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -CLWMR +CLMR ? ? isobaric_sfc @@ -3272,3 +3272,40 @@ entire_atmos_single_lyr ? ? ? +508 +MAX_PRATE_ON_SURFACE +Maximum Precipitation Rate on surface +1 +tmpl4_8 +PRATE +? +MAX +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? diff --git a/tests/parm/postxconfig-NT.txt b/tests/parm/postxconfig-NT.txt index e804503013..4bd605e546 100644 --- a/tests/parm/postxconfig-NT.txt +++ b/tests/parm/postxconfig-NT.txt @@ -388,11 +388,11 @@ isobaric_sfc ? ? 153 -CLWMR_ON_ISOBARIC_SFC +CLMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -CLWMR +CLMR ? ? isobaric_sfc @@ -580,7 +580,7 @@ tmpl4_0 REFC NCEP ? -entire_atmos +entire_atmos_single_lyr 0 ? 0 @@ -2578,7 +2578,7 @@ tmpl4_8 TCDC ? AVE -entire_atmos +entire_atmos_single_lyr 0 ? 0 @@ -6678,11 +6678,11 @@ hybrid_lvl ? ? 124 -CLWMR_ON_HYBRID_LVL +CLMR_ON_HYBRID_LVL ? 1 tmpl4_0 -CLWMR +CLMR ? ? hybrid_lvl @@ -6981,7 +6981,7 @@ tmpl4_0 TCDC ? ? -entire_atmos +entire_atmos_single_lyr 0 ? 0 @@ -8181,7 +8181,7 @@ tmpl4_8 TCDC ? AVE -entire_atmos +entire_atmos_single_lyr 0 ? 0 diff --git a/tests/parm/postxconfig-NT_FH00.txt b/tests/parm/postxconfig-NT_FH00.txt index 50295aab1a..52e08dde79 100644 --- a/tests/parm/postxconfig-NT_FH00.txt +++ b/tests/parm/postxconfig-NT_FH00.txt @@ -388,11 +388,11 @@ isobaric_sfc ? ? 153 -CLWMR_ON_ISOBARIC_SFC +CLMR_ON_ISOBARIC_SFC ? 1 tmpl4_0 -CLWMR +CLMR ? ? isobaric_sfc @@ -580,7 +580,7 @@ tmpl4_0 REFC NCEP ? -entire_atmos +entire_atmos_single_lyr 0 ? 0 @@ -4939,11 +4939,11 @@ hybrid_lvl ? ? 124 -CLWMR_ON_HYBRID_LVL +CLMR_ON_HYBRID_LVL ? 1 tmpl4_0 -CLWMR +CLMR ? ? hybrid_lvl @@ -5242,7 +5242,7 @@ tmpl4_0 TCDC ? ? -entire_atmos +entire_atmos_single_lyr 0 ? 0 diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index f2fed584cc..d4b6a3e158 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -129,7 +129,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 8 ltaerosol = .F. ttendlim = -999.0 @@ -154,6 +153,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] do_mynnedmf = .T. do_mynnsfclay = .true. lgfdlmprad = .false. diff --git a/tests/parm/regional_c768.nml.IN b/tests/parm/regional_c768.nml.IN index c05f98de8d..9f47b2a6a9 100644 --- a/tests/parm/regional_c768.nml.IN +++ b/tests/parm/regional_c768.nml.IN @@ -119,7 +119,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -141,6 +140,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .true. cnvcld = .false. diff --git a/tests/parm/regional_rrtmgp.nml.IN b/tests/parm/regional_rrtmgp.nml.IN index 55c0c58050..a8104d0cb3 100644 --- a/tests/parm/regional_rrtmgp.nml.IN +++ b/tests/parm/regional_rrtmgp.nml.IN @@ -129,7 +129,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 8 ltaerosol = .F. ttendlim = -999.0 @@ -138,7 +137,7 @@ fhlwr = 900. ialb = 1 iems = 1 - IAER = 111 + IAER = 5111 ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -154,6 +153,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] do_mynnedmf = .T. do_mynnsfclay = .true. lgfdlmprad = .false. @@ -213,6 +213,9 @@ doGP_cldoptics_LUT = .true. doGP_lwscat = .true. use_LW_jacobian = .true. + damp_LW_fluxadj = .true. + lfnc_k = 3125. + lfnc_p0 = 60000. / &interpolator_nml diff --git a/tests/parm/stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN index 9e19262673..17ef38528c 100644 --- a/tests/parm/stretched-input.nml.IN +++ b/tests/parm/stretched-input.nml.IN @@ -117,7 +117,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -139,6 +138,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .false. cnvcld = .true. diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN index b25f759e9f..c9e034d620 100644 --- a/tests/parm/stretched-nest-input.nml.IN +++ b/tests/parm/stretched-nest-input.nml.IN @@ -126,7 +126,6 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 5 imp_physics = 11 pdfcld = .false. fhswr = 3600. @@ -148,6 +147,7 @@ hybedmf = @[HYBEDMF] satmedmf = @[SATMEDMF] lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] random_clds = .false. trans_trac = .false. cnvcld = .true. diff --git a/tests/parm/stretched-nest-quilt-model_configure.IN b/tests/parm/stretched-nest-quilt-model_configure.IN index 193cecc9ba..5203703705 100644 --- a/tests/parm/stretched-nest-quilt-model_configure.IN +++ b/tests/parm/stretched-nest-quilt-model_configure.IN @@ -1,6 +1,4 @@ -total_member: 1 print_esmf: .true. -PE_MEMBER01: 108 start_year: 2018 start_month: 10 start_day: 15 diff --git a/tests/rt.conf b/tests/rt.conf index ebf9e038d3..722fae85b0 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,12 +2,9 @@ # CPLD tests # ################################################################################################################################################################################### -COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst | - wcoss_cray | fv3 | RUN | cpld_control | - wcoss_cray | fv3 | RUN | cpld_restart | - wcoss_cray | | cpld_control -RUN | cpld_controlfrac | - wcoss_cray | fv3 | -RUN | cpld_restartfrac | - wcoss_cray | | cpld_controlfrac - RUN | cpld_2threads | - wcoss_cray | | RUN | cpld_decomp | - wcoss_cray jet.intel | | RUN | cpld_ca | - wcoss_cray | fv3 | @@ -15,44 +12,32 @@ RUN | cpld_ca #12h/36h/48h restart tests RUN | cpld_control_c192 | - wcoss_cray | fv3 | RUN | cpld_restart_c192 | - wcoss_cray | | cpld_control_c192 -RUN | cpld_controlfrac_c192 | - wcoss_cray | fv3 | -RUN | cpld_restartfrac_c192 | - wcoss_cray | | cpld_controlfrac_c192 RUN | cpld_control_c384 | - wcoss_cray | fv3 | RUN | cpld_restart_c384 | - wcoss_cray | | cpld_control_c384 -RUN | cpld_controlfrac_c384 | - wcoss_cray | fv3 | -RUN | cpld_restartfrac_c384 | - wcoss_cray | | cpld_controlfrac_c384 - -RUN | cpld_bmark | - wcoss_cray | fv3 | -RUN | cpld_restart_bmark | - wcoss_cray | | cpld_bmark -RUN | cpld_bmarkfrac | - wcoss_cray | fv3 | -RUN | cpld_restart_bmarkfrac | - wcoss_cray | | cpld_bmarkfrac #3h/3h/6h restart test # test fails on gaea with esmfpio error for tiled output -RUN | cpld_bmarkfrac_v16 | - wcoss_cray | fv3 | -RUN | cpld_bmarkfrac_v16_nsst | - wcoss_cray | fv3 | -RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray | | cpld_bmarkfrac_v16 - -COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp | - wcoss_cray | fv3 | -RUN | cpld_bmark_wave | - wcoss_cray | fv3 | -RUN | cpld_bmarkfrac_wave | - wcoss_cray | fv3 | -RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray | fv3 | -RUN | cpld_bmarkfrac_wave_v16_noahmp | - wcoss_cray | fv3 | +RUN | cpld_bmark_v16 | - wcoss_cray | fv3 | +RUN | cpld_restart_bmark_v16 | - wcoss_cray | | cpld_bmark_v16 +RUN | cpld_bmark_v16_nsst | - wcoss_cray | fv3 | + +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 | - wcoss_cray | fv3 | +RUN | cpld_bmark_wave_v16 | - wcoss_cray | fv3 | +RUN | cpld_bmark_wave_v16_p7b | - wcoss_cray cheyenne.intel | fv3 | RUN | cpld_control_wave | - wcoss_cray | 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 | fv3 | +COMPILE | -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled | - wcoss_cray | fv3 | RUN | cpld_debug | - wcoss_cray | fv3 | -RUN | cpld_debugfrac | - wcoss_cray | fv3 | ################################################################################################################################################################################### # PROD tests # ################################################################################################################################################################################### -COMPILE | APP=ATM SUITES=FV3_GFS_v16 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | | fv3 | RUN | control | | fv3 | -RUN | control_decomp | - jet.intel | | +RUN | control_decomp | | | RUN | control_2threads | - wcoss_cray | | RUN | control_restart | | | control RUN | control_CubedSphereGrid | | fv3 | @@ -64,16 +49,16 @@ RUN | control_stochy RUN | control_ca | | fv3 | RUN | control_lndp | | fv3 | RUN | control_lheatstrg | | fv3 | +RUN | control_lseaspray | | fv3 | RUN | control_merra2 | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp | | 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 | control_rrtmgp | | fv3 | #RUN | control_rrtmgp_2threads | | | #RUN | control_rrtmgp_c192 | | fv3 | -# fv3_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests -RUN | control_csawmg | - cheyenne.intel | fv3 | -RUN | control_csawmgt | - cheyenne.intel | fv3 | +RUN | control_csawmg | -jet.intel | fv3 | +RUN | control_csawmgt | | fv3 | RUN | control_flake | | fv3 | RUN | control_ugwpv1 | | fv3 | RUN | control_ras | | fv3 | @@ -83,7 +68,7 @@ RUN | control_thompson_no_aero RUN | control_noahmp | | fv3 | # -COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON | | fv3 | RUN | regional_control | | fv3 | RUN | regional_restart | | fv3 | regional_control RUN | regional_quilt | | fv3 | @@ -93,27 +78,25 @@ RUN | regional_quilt_netcdf_parallel RUN | regional_quilt_RRTMGP | | fv3 | # Run multigases test in REPRO mode to avoid numerical instability in the deep atmosphere -#COMPILE | APP=ATM SUITES=FV3_GFS_v16_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | +#COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON | | fv3 | #RUN | control_multigases | | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now -# COMPILE | APP=ATMW SUITES=FV3_GFS_v16 32BIT=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | -# RUN | control_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +# COMPILE | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +# RUN | control_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | # # -# #COMPILE | APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -# #RUN | fv3_stretched | | fv3 | -# #RUN | fv3_stretched_nest | | fv3 | +# #COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -D32BIT=ON | | fv3 | +# #RUN | fv3_stretched | | fv3 | +# #RUN | fv3_stretched_nest | | fv3 | # -COMPILE | APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON | | fv3 | RUN | fv3_gsd | | fv3 | RUN | fv3_rrfs_v1alpha | | fv3 | -# These two tests crash with NaNs on jet.intel -RUN | fv3_rap | - jet.intel | fv3 | -RUN | fv3_hrrr | - jet.intel | fv3 | -# This test crashes with NaNs on jet.intel -RUN | fv3_rrfs_v1beta | - jet.intel | fv3 | +RUN | fv3_rap | | fv3 | +RUN | fv3_hrrr | | fv3 | +RUN | fv3_rrfs_v1beta | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -122,9 +105,9 @@ RUN | fv3_esg_HAFS_v0_hwrf_thompson # DEBUG tests # ################################################################################################################################################################################### -COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON | | fv3 | RUN | control_debug | | fv3 | -RUN | control_2threads_debug | - wcoss_cray | fv3 | +RUN | control_2threads_debug | - wcoss_cray | | RUN | control_CubedSphereGrid_debug | | fv3 | RUN | control_wrtGauss_netcdf_parallel_debug | | fv3 | RUN | control_stochy_debug | | fv3 | @@ -138,31 +121,33 @@ RUN | control_csawmgt_debug RUN | control_ugwpv1_debug | | fv3 | RUN | control_ras_debug | | fv3 | #RUN | control_noahmp_debug | | fv3 | +RUN | control_diag_debug | | fv3 | -COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON | | fv3 | RUN | control_thompson_debug | | fv3 | RUN | control_thompson_no_aero_debug | | fv3 | +RUN | control_thompson_extdiag_debug | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | regional_control_debug | | fv3 | RUN | fv3_gsd_debug | | fv3 | -RUN | fv3_gsd_dtend_debug | | fv3 | +RUN | fv3_gsd_diag_debug | | fv3 | RUN | fv3_rrfs_v1beta_debug | | fv3 | RUN | fv3_rrfs_v1alpha_debug | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON | | 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 | -#COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y DEBUG=Y | | fv3 | +#COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | #RUN | fv3_multigases_debug | | fv3 | ################################################################################################################################################################################### # NEMS Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | APP=NG-GODAS-NEMSDATM | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS-NEMSDATM | - wcoss_cray | fv3 | RUN | datm_control_cfsr | - wcoss_cray | fv3 | RUN | datm_restart_cfsr | - wcoss_cray | | datm_control_cfsr RUN | datm_control_gefs | - wcoss_cray | fv3 | @@ -173,14 +158,14 @@ RUN | datm_bulk_gefs RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel | fv3 | RUN | datm_mx025_gefs | - wcoss_cray | fv3 | -COMPILE | APP=NG-GODAS-NEMSDATM DEBUG=Y | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON | - wcoss_cray | fv3 | RUN | datm_debug_cfsr | - wcoss_cray | fv3 | ################################################################################################################################################################################### # CDEPS Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | APP=NG-GODAS | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS | - wcoss_cray | fv3 | RUN | datm_cdeps_control_cfsr | - wcoss_cray | fv3 | RUN | datm_cdeps_restart_cfsr | - wcoss_cray | | datm_cdeps_control_cfsr RUN | datm_cdeps_control_gefs | - wcoss_cray | fv3 | @@ -188,18 +173,24 @@ RUN | datm_cdeps_control_gefs RUN | datm_cdeps_bulk_cfsr | - wcoss_cray | fv3 | RUN | datm_cdeps_bulk_gefs | - wcoss_cray | fv3 | -RUN | datm_cdeps_mx025_cfsr | - wcoss_cray gaea.intel wcoss_dell_p3 orion.intel | fv3 | +RUN | datm_cdeps_mx025_cfsr | - wcoss_cray | fv3 | RUN | datm_cdeps_mx025_gefs | - wcoss_cray | fv3 | RUN | datm_cdeps_multiple_files_cfsr | - wcoss_cray | | -COMPILE | APP=NG-GODAS DEBUG=Y | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss_cray | fv3 | RUN | datm_cdeps_debug_cfsr | - wcoss_cray | fv3 | ################################################################################################################################################################################### # ATM-WAV tests # ################################################################################################################################################################################### -# WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | APP=ATMW SUITES=FV3_GFS_v16 | - wcoss_cray | fv3 | -RUN | control_atmwav | - wcoss_cray | fv3 | +COMPILE | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 | - wcoss_cray | fv3 | +RUN | control_atmwav | - wcoss_cray | fv3 | + +################################################################################################################################################################################### +# ATM-GOCART tests # +################################################################################################################################################################################### + +COMPILE | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 | + hera.intel | fv3 | +RUN | control_atm_aerosols | + hera.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index d4872f5f3d..29c4c64148 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -232,9 +232,10 @@ elif [[ $MACHINE_ID = hera.* ]]; then ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm - 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 + PYTHONHOME=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3_new_20210629 + export PATH=$PYTHONHOME/bin:$PATH + export PYTHONPATH=$PYTHONHOME/lib/python3.7/site-packages + ECFLOW_START=$PYTHONHOME/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=debug @@ -413,16 +414,16 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210528 +BL_DATE=20210720 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210528} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210717} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20210503 -INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210212} +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210717} shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -632,7 +633,7 @@ EOF # 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 + if [[ ${MAKE_OPT^^} =~ "-DREPRO=ON" ]]; then RT_SUFFIX="_repro" BL_SUFFIX="_repro" else @@ -640,7 +641,7 @@ EOF BL_SUFFIX="" fi - if [[ ${MAKE_OPT^^} =~ "WW3=Y" ]]; then + if [[ ${MAKE_OPT^^} =~ "-DAPP=ATMW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=S2SW" ]]; then COMPILE_PREV_WW3_NR=${COMPILE_NR} fi diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 685998a3d4..0798f2b6b4 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,23 +1,22 @@ ############################################################################################################################################################################### -# CPLD Benchmark 35d tests # +# CPLD Benchmark 35d tests # ############################################################################################################################################################################### -COMPILE | APP=S2SW SUITES=FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp | + 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 | APP=S2SW SUITES=FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 | + hera.intel orion.intel gaea.intel | fv3 | | +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2012010100 +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2012040100 +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2012070100 +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2012100100 +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2013010100 +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2013040100 +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2013070100 +#RUN | cpld_bmark_wave_v16_noahmp_35d | | fv3 | | 2013100100 -COMPILE | APP=S2SW SUITES=FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp | + hera.intel orion.intel +gaea.intel | fv3 | | -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012010100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012040100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012070100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012100100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013010100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013040100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013070100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013100100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2012010100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2012040100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2012070100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2012100100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2013010100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2013040100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2013070100 +RUN | cpld_bmark_wave_v16_p7b_35d | | fv3 | | 2013100100 diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 222285b125..603f68fde3 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -4,7 +4,7 @@ # CCPP REPRO tests # ############################################################################################################################################################ -COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | | fv3 | +COMPILE | -DAPP=ATM -DREPRO=ON -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | | fv3 | RUN | fv3_thompson_mynn | | fv3 | RUN | fv3_gf_thompson | | fv3 | @@ -15,18 +15,18 @@ RUN | fv3_gsd_lndp 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 | +COMPILE | -DAPP=ATM -DREPRO=ON -DCCPP_SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | RUN | fv3_gsd_mynnsfc | | fv3 | RUN | fv3_gsd_noah_mynnsfc | | fv3 | -COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | +COMPILE | -DAPP=ATM -DREPRO=ON -DCCPP_SUITES=FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | 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 | +COMPILE | -DAPP=ATM -DREPRO=ON -DCCPP_SUITES=FV3_GSD_v0_drag_suite,FV3_GSD_v0_unified_ugwp_suite,FV3_RAP,FV3_HRRR | | fv3 | RUN | fv3_gsd_drag_suite | | fv3 | RUN | fv3_gsd_unified_ugwp | | | RUN | fv3_gsd_drag_suite_unified_ugwp | | | @@ -34,7 +34,7 @@ RUN | fv3_rap RUN | fv3_hrrr | | fv3 | # No longer working after global regression test updates to GFS v16 2021/06/01 -#COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_2017_ntiedtke,FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu | | fv3 | +#COMPILE | -DAPP=ATM -DREPRO=ON -DCCPP_SUITES=FV3_GFS_2017_ntiedtke,FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu | | fv3 | #RUN | fv3_shinhong | | fv3 | #RUN | fv3_ysu | | fv3 | #RUN | fv3_ntiedtke | | fv3 | @@ -43,13 +43,13 @@ RUN | fv3_hrrr # CCPP DEBUG tests # ############################################################################################################################################################ -COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | RUN | fv3_gsd_debug | | fv3 | -RUN | fv3_gsd_dtend_debug | | fv3 | +RUN | fv3_gsd_diag_debug | | fv3 | RUN | fv3_gsd_mynnsfc_debug | | fv3 | RUN | fv3_gsd_noah_mynnsfc_debug | | fv3 | -COMPILE | APP=ATM 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | +COMPILE | -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DCCPP_SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | # Run tests RUN | fv3_gsd_sar_debug | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 1648a7ad7c..215693219d 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,7 +2,7 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras| | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras| | fv3 | RUN | control | | fv3 | RUN | control_restart | | | control @@ -15,18 +15,18 @@ RUN | control_ugwpv1 RUN | control_ras | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | fv3_gsd | | fv3 | RUN | fv3_rrfs_v1alpha | | fv3 | RUN | fv3_rrfs_v1beta | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | # This crashes with 'NaN in input field of mpp_reproducing_sum(_2d)' after 64 time steps -#COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +#COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | #RUN | fv3_multigases | | fv3 | ################################################################################################################################################################## @@ -34,39 +34,41 @@ RUN | fv3_esg_HAFS_v0_hwrf_thompson ################################################################################################################################################################## # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | APP=ATM 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | control_debug | | fv3 | +RUN | control_diag_debug | | fv3 | RUN | regional_control_debug | | fv3 | RUN | fv3_rrfs_v1alpha_debug | | fv3 | RUN | fv3_rrfs_v1beta_debug | | fv3 | RUN | fv3_gsd_debug | | fv3 | -RUN | fv3_gsd_dtend_debug | | fv3 | +RUN | fv3_gsd_diag_debug | | fv3 | RUN | control_thompson_debug | | fv3 | RUN | control_thompson_no_aero_debug | | fv3 | +RUN | control_thompson_extdiag_debug | | fv3 | RUN | control_rrtmgp_debug | | fv3 | RUN | control_ugwpv1_debug | | fv3 | RUN | control_ras_debug | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON | | 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 | -#COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y DEBUG=Y | | fv3 | +#COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | #RUN | fv3_multigases_debug | | fv3 | ################################################################################################################################################################## # S2S tests # ################################################################################################################################################################## -COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | -#RUN | cpld_controlfrac | | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled | | fv3 | +RUN | cpld_control | | fv3 | -COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y | | fv3 | -#RUN | cpld_debugfrac | | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled -DDEBUG=ON | | fv3 | +RUN | cpld_debug | | fv3 | ################################################################################################################################################################## # Data Atmosphere tests # ################################################################################################################################################################## -COMPILE | APP=NG-GODAS-NEMSDATM | | fv3 | +COMPILE | -DAPP=NG-GODAS-NEMSDATM | | fv3 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 34ed5dff25..cfe5e7c6af 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -154,7 +154,7 @@ 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 + if [[ $status_label = 'FAILED' ]] || [[ $status_label = 'TIMEOUT' ]]; then test_status='FAIL' fi fi diff --git a/tests/run_test.sh b/tests/run_test.sh index c442103058..96914c3cd3 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -151,8 +151,6 @@ elif [[ $SCHEDULER = 'lsf' ]]; then atparse < $PATHRT/fv3_conf/fv3_bsub.IN > job_card fi -atparse < ${PATHRT}/parm/${NEMS_CONFIGURE:-nems.configure} > nems.configure - ################################################################################ # Submit test job ################################################################################ diff --git a/tests/tests/fv3_gfs_v16_dtend_debug b/tests/tests/control_atm_aerosols similarity index 50% rename from tests/tests/fv3_gfs_v16_dtend_debug rename to tests/tests/control_atm_aerosols index 16945e05be..cb299ab6cb 100644 --- a/tests/tests/fv3_gfs_v16_dtend_debug +++ b/tests/tests/control_atm_aerosols @@ -1,43 +1,25 @@ ############################################################################### # -# FV3 CCPP GFS v16 compiled with 32-bit dynamics test in DEBUG mode plus extra diagnostics +# global control test with prognostic aerosols: GFSv16 FV3-GOCART at C96L127 # ############################################################################### -export TEST_DESCR="Run FV3 32bit CCPP GFS v16 in DEBUG mode" +export TEST_DESCR="Compare global results for prognostic aerosols with previous trunk version" -export CNTL_DIR=fv3_gfs_v16_dtend_debug +export CNTL_DIR=control_atm_aerosols -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 \ - phyf002.tile1.nc \ - phyf002.tile2.nc \ - phyf002.tile3.nc \ - phyf002.tile4.nc \ - phyf002.tile5.nc \ - phyf002.tile6.nc \ - dynf000.tile1.nc \ - dynf000.tile2.nc \ - dynf000.tile3.nc \ - dynf000.tile4.nc \ - dynf000.tile5.nc \ - dynf000.tile6.nc \ - dynf002.tile1.nc \ - dynf002.tile2.nc \ - dynf002.tile3.nc \ - dynf002.tile4.nc \ - dynf002.tile5.nc \ - dynf002.tile6.nc \ +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24 \ + gocart.inst_aod.20210322_0700z.nc4 \ + gocart.inst_aod.20210323_0600z.nc4 \ + gocart.tavg_cmass.20210322_0730z.nc4 \ + gocart.tavg_cmass.20210323_0430z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -72,25 +54,30 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/sfc_data.tile6.nc" export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=12 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export FSCAV_AERO='"*:0.6", "seas1:1.0", "seas2:1.0", "seas3:1.0", "seas4:1.0", "seas5:1.0"' +export DNATS=3 -export FDIAG=0,1,2,3,4,5,6 -export FHZERO=1 -export LDIAG3D=.true. -export QDIAG3D=.true. -export MAX_OUTPUT_FIELDS=400 -export DIAG_TABLE_ADDITIONAL=diag_additional_gfs_v16_dtend +export CPL=.true. +export CPLCHM=.T. +export atm_model='fv3' +export atm_petlist_bounds="0 149" +export chm_model='gocart' +export chm_petlist_bounds="0 143" +export coupling_interval_sec=${DT_ATMOS} +export NEMS_CONFIGURE="nems.configure.atm_aerosols.IN" -DT_ATMOS="1200" - -export FHMAX=2 -export NFHOUT=1 -export NFHMAX_HF=12 -export NFHOUT_HF=1 - -export NSTF_NAME=2,1,0,0,0 - -export FV3_RUN=gfs_v16_run.IN +export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=v16_c96.nml.IN -export IAER=1111 - +export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_diag_debug b/tests/tests/control_diag_debug new file mode 100644 index 0000000000..87f379bbc1 --- /dev/null +++ b/tests/tests/control_diag_debug @@ -0,0 +1,39 @@ +############################################################################### +# +# FV3 CCPP GFS v16 compiled with 32-bit dynamics test in DEBUG mode plus extra diagnostics +# +############################################################################### + +export TEST_DESCR="Compare global control diagnostic debug results with previous trunk version" + +export CNTL_DIR=control_diag_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export FHMAX=1 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=control.nml.IN + +export FDIAG=0,1,2,3,4,5,6 +export FHZERO=1 +export LDIAG3D=.true. +export QDIAG3D=.true. +export MAX_OUTPUT_FIELDS=500 +export DIAG_TABLE_ADDITIONAL=diag_additional_control_dtend +export PRINT_DIFF_PGR=.T. diff --git a/tests/tests/control_lseaspray b/tests/tests/control_lseaspray new file mode 100644 index 0000000000..790c653901 --- /dev/null +++ b/tests/tests/control_lseaspray @@ -0,0 +1,37 @@ +############################################################################### +# +# Global control with lseaspray test +# +############################################################################### + +export TEST_DESCR="Compare global control with lseaspray results with previous trunk version" + +export CNTL_DIR=control_lseaspray + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=600 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 + +export LSEASPRAY=.T. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_merra2 b/tests/tests/control_merra2 index 62c655b20f..79f66f364b 100644 --- a/tests/tests/control_merra2 +++ b/tests/tests/control_merra2 @@ -31,6 +31,7 @@ export WRITE_DOPOST=.true. export USE_MERRA2=.T. export IAER=1011 +export NEW_DIAGTABLE='diag_table_gfsv16_merra2' export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 diff --git a/tests/tests/control_merra2_debug b/tests/tests/control_merra2_debug index ffdc9fccff..0d5d66683b 100644 --- a/tests/tests/control_merra2_debug +++ b/tests/tests/control_merra2_debug @@ -27,6 +27,7 @@ export FHMAX=1 export USE_MERRA2=.T. export IAER=1011 +export NEW_DIAGTABLE='diag_table_gfsv16_merra2' export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 diff --git a/tests/tests/control_ras b/tests/tests/control_ras index 391bf46c51..94c97fcea4 100644 --- a/tests/tests/control_ras +++ b/tests/tests/control_ras @@ -27,11 +27,13 @@ export SDAY=22 export SHOUR=06 export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. +export WRITE_DOPOST=.T. export IAER=5111 export RAS=.T. export IMFDEEPCNV=-1 +export CNVCLD=.F. +export RANDOM_CLDS=.T. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16_ras diff --git a/tests/tests/control_ras_debug b/tests/tests/control_ras_debug index 5a02be1e20..890e4fc823 100644 --- a/tests/tests/control_ras_debug +++ b/tests/tests/control_ras_debug @@ -28,6 +28,8 @@ export IAER=5111 export RAS=.T. export IMFDEEPCNV=-1 +export CNVCLD=.F. +export RANDOM_CLDS=.T. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16_ras diff --git a/tests/tests/control_thompson_extdiag_debug b/tests/tests/control_thompson_extdiag_debug new file mode 100644 index 0000000000..ff5627dcba --- /dev/null +++ b/tests/tests/control_thompson_extdiag_debug @@ -0,0 +1,49 @@ +############################################################################### +# +# Global control with Thompson debug test with extended diagnostics +# +############################################################################### + +export TEST_DESCR="Compare global control Thompson debug results with extended diagnostics with previous trunk version" + +export CNTL_DIR=control_thompson_debug_extdiag + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=600 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export FHMAX=1 + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. +export EXT_DIAG_THOMPSON=.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. + +export NEW_DIAGTABLE='diag_table_gfsv16_thompson_extdiag' + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v16_thompson +export INPUT_NML=control_thompson.nml.IN diff --git a/tests/tests/cpld_2threads b/tests/tests/cpld_2threads index ad92f9ddfb..a62c6f07e2 100644 --- a/tests/tests/cpld_2threads +++ b/tests/tests/cpld_2threads @@ -69,4 +69,5 @@ export atm_petlist_bounds=$APB_cpl_thrd export ocn_petlist_bounds=$OPB_cpl_thrd export ice_petlist_bounds=$IPB_cpl_thrd +export eps_imesh='2.5e-1' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark deleted file mode 100644 index d48d8aef78..0000000000 --- a/tests/tests/cpld_bmark +++ /dev/null @@ -1,139 +0,0 @@ -# -# cpld_bmark test -# - -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark test" - -export CNTL_DIR="cpld_bmark" - -export LIST_FILES="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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} - -# 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 DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="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 deleted file mode 100644 index 7e941ffb13..0000000000 --- a/tests/tests/cpld_bmark_35d +++ /dev/null @@ -1,89 +0,0 @@ -# -# cpld_bmark 35D -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - Benchmark 35d test" - -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='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" - -export INPUT_NML=input.benchmark_ccpp.nml.IN - -export FIELD_TABLE="field_table.gfdlmp" -export DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="FV3_GFS_v15p2_coupled" - -export RT35D='.T.' -export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmark_v16 similarity index 96% rename from tests/tests/cpld_bmarkfrac_v16 rename to tests/tests/cpld_bmark_v16 index 5002c8fb5d..12a57b972a 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmark_v16 @@ -1,10 +1,10 @@ # -# cpld_bmarkfrac_v16 test +# cpld_bmark_v16 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - v16" -export CNTL_DIR="cpld_bmarkfrac_v16" +export CNTL_DIR="cpld_bmark_v16" export LIST_FILES="sfcf006.nc \ atmf006.nc \ @@ -93,7 +93,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='225' +export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -104,9 +104,6 @@ export CPL_FAST=${DT_ATMOS} 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 diff --git a/tests/tests/cpld_bmarkfrac_v16_nsst b/tests/tests/cpld_bmark_v16_nsst similarity index 95% rename from tests/tests/cpld_bmarkfrac_v16_nsst rename to tests/tests/cpld_bmark_v16_nsst index 9f86f0967f..5648a272dc 100644 --- a/tests/tests/cpld_bmarkfrac_v16_nsst +++ b/tests/tests/cpld_bmark_v16_nsst @@ -1,10 +1,10 @@ # -# cpld_bmarkfrac_v16_nsst test +# cpld_bmark_v16_nsst test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - v16" -export CNTL_DIR="cpld_bmarkfrac_v16_nsst" +export CNTL_DIR="cpld_bmark_v16_nsst" export LIST_FILES="sfcf006.nc \ atmf006.nc \ @@ -93,7 +93,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='225' +export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -104,9 +104,6 @@ export CPL_FAST=${DT_ATMOS} 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 diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave deleted file mode 100644 index a7237abf7d..0000000000 --- a/tests/tests/cpld_bmark_wave +++ /dev/null @@ -1,148 +0,0 @@ -# -# cpld_bmark_wave test -# -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 LIST_FILES="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 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 ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" - -export INPUT_NML=input.benchmark_ccpp.nml.IN - -export FIELD_TABLE="field_table.gfdlmp" -export DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="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 deleted file mode 100644 index 67a8d5030e..0000000000 --- a/tests/tests/cpld_bmark_wave_35d +++ /dev/null @@ -1,110 +0,0 @@ -# -# 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 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 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 ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" - -export INPUT_NML=input.benchmark_ccpp.nml.IN - -export FIELD_TABLE="field_table.gfdlmp" -export DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="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_bmark_wave_v16 similarity index 95% rename from tests/tests/cpld_bmarkfrac_wave_v16 rename to tests/tests/cpld_bmark_wave_v16 index f028fd3650..699db8971f 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmark_wave_v16 @@ -1,9 +1,9 @@ # -# cpld_bmarkfrac_wave_v16 test +# cpld_bmark_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 TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves- v16" -export CNTL_DIR="cpld_bmarkfrac_wave_v16" +export CNTL_DIR="cpld_bmark_wave_v16" export LIST_FILES="sfcf006.nc \ atmf006.nc \ @@ -92,7 +92,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='225' +export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -104,9 +104,6 @@ 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 PSM_BC=1 @@ -156,7 +153,8 @@ export MOM6_REPRO_LA='True' export RUNID="cpcice" -export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} export INPUT_NML=input.benchmark_v16.nml.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_noahmp b/tests/tests/cpld_bmark_wave_v16_noahmp similarity index 94% rename from tests/tests/cpld_bmarkfrac_wave_v16_noahmp rename to tests/tests/cpld_bmark_wave_v16_noahmp index 80ba43efd0..56746735f7 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_noahmp +++ b/tests/tests/cpld_bmark_wave_v16_noahmp @@ -1,9 +1,9 @@ # -# cpld_bmarkfrac_wave_v16 NoahMP test +# cpld_bmark_wave_v16 NoahMP test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16 NoahMP" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves - v16 NoahMP" -export CNTL_DIR="cpld_bmarkfrac_wave_v16_noahmp" +export CNTL_DIR="cpld_bmark_wave_v16_noahmp" export LIST_FILES="sfcf006.nc \ atmf006.nc \ @@ -92,7 +92,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='225' +export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -104,9 +104,6 @@ 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 PSM_BC=1 @@ -156,7 +153,8 @@ export MOM6_REPRO_LA='True' export RUNID="cpcice" -export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} export INPUT_NML=input.benchmark_v16.nml.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_noahmp_35d b/tests/tests/cpld_bmark_wave_v16_noahmp_35d similarity index 83% rename from tests/tests/cpld_bmarkfrac_wave_v16_noahmp_35d rename to tests/tests/cpld_bmark_wave_v16_noahmp_35d index 4c88e72336..7f56742a34 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_noahmp_35d +++ b/tests/tests/cpld_bmark_wave_v16_noahmp_35d @@ -31,9 +31,9 @@ export WLCLK=480 #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 +export TPN=20 +export THRD=2 +export WRTTASK_PER_GROUP=88 # 6x12 setting #export TASKS=866 @@ -46,14 +46,24 @@ export WRTTASK_PER_GROUP=24 #export wav_petlist_bounds="744 865" # 8x12 setting -export TASKS=1010 -export INPES=8 +#export TASKS=1010 +#export INPES=12 +#export JNPES=8 +#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" + +# 12x16 setting +export TASKS=1700 +export INPES=16 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" +export med_petlist_bounds="0 1151" +export atm_petlist_bounds="0 1239" +export ocn_petlist_bounds="1240 1459" +export ice_petlist_bounds="1460 1539" +export wav_petlist_bounds="1540 1699" # atm/ocn/ice resolution export ATMRES='C384' @@ -62,12 +72,13 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" +export WRITE_DOPOST=.true. export OCNRES='025' export ICERES='0.25' export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE='48' +export NPROC_ICE='80' # resolution dependent setting export CDMBWD=${CDMBWD_c384} @@ -85,9 +96,6 @@ 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 PSM_BC=1 @@ -137,7 +145,8 @@ export MOM6_REPRO_LA='True' export RUNID="cpcice" -export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} export INPUT_NML=input.benchmark_v16.nml.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_noahmp_nsst b/tests/tests/cpld_bmark_wave_v16_p7b similarity index 88% rename from tests/tests/cpld_bmarkfrac_wave_v16_noahmp_nsst rename to tests/tests/cpld_bmark_wave_v16_p7b index 5b2422604c..1fbff13892 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_noahmp_nsst +++ b/tests/tests/cpld_bmark_wave_v16_p7b @@ -1,12 +1,12 @@ # -# cpld_bmarkfrac_wave_v16 NoahMP NSST test +# cpld_bmark_wave_v16 P7b test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves-frac grid - v16 NoahMP NSST" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark test with waves - p7b:v16 NoahMP NSST merra2 ugwpv1 composite_sfcfields" -export CNTL_DIR="cpld_bmarkfrac_wave_v16_noahmp_nsst" +export CNTL_DIR="cpld_bmark_wave_v16_p7b" -export LIST_FILES="phyf006.nc \ - dynf006.nc \ +export LIST_FILES="sfcf006.nc \ + atmf006.nc \ 20130401.060000.out_grd.gwes_30m \ 20130401.060000.out_pnt.points \ RESTART/coupler.res \ @@ -92,7 +92,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='225' +export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -104,9 +104,6 @@ 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 PSM_BC=1 @@ -150,6 +147,12 @@ export LANDICE=".false." export OZ_PHYS_NEW=".T." +# P7b +export IAER=1011 +export DO_UGWP_V1=".true." +export KTHERM=2 +export TFREEZE_OPTION='mushy' + export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" @@ -157,12 +160,13 @@ export MOM6_REPRO_LA='True' export RUNID="cpcice" -export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} -export INPUT_NML=input.benchmark_v16.nml.IN +export INPUT_NML=input.benchmark_v16_p7b.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_bmark_v16_template" -export CCPP_SUITE="FV3_GFS_v16_coupled_nsstNoahmp" +export DIAG_TABLE="diag_table_bmark_v16_merra2_template" +export CCPP_SUITE="FV3_GFS_v16_coupled_nsstNoahmpUGWPv1" export FV3_RUN=cpld_bmark_tiled_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmark_wave_v16_p7b_35d similarity index 57% rename from tests/tests/cpld_bmarkfrac_wave_v16_35d rename to tests/tests/cpld_bmark_wave_v16_p7b_35d index a3a3c90688..d179514612 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmark_wave_v16_p7b_35d @@ -1,7 +1,7 @@ # -# cpld_bmark_v16 35D +# cpld_bmark_v16_p7b 35D # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark 35d test with v16" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark 35d test with p7b: v16 NoahMP NSST merra2 ugwpv1 composite_sfcfields" export_35d_run export_fv3 @@ -31,9 +31,9 @@ export WLCLK=480 #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 +export TPN=20 +export THRD=2 +export WRTTASK_PER_GROUP=88 # 6x12 setting #export TASKS=866 @@ -46,14 +46,24 @@ export WRTTASK_PER_GROUP=24 #export wav_petlist_bounds="744 865" # 8x12 setting -export TASKS=1010 -export INPES=8 +#export TASKS=1010 +#export INPES=12 +#export JNPES=8 +#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" + +# 12x16 setting +export TASKS=1700 +export INPES=16 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" +export med_petlist_bounds="0 1151" +export atm_petlist_bounds="0 1239" +export ocn_petlist_bounds="1240 1459" +export ice_petlist_bounds="1460 1539" +export wav_petlist_bounds="1540 1699" # atm/ocn/ice resolution export ATMRES='C384' @@ -62,18 +72,19 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" +export WRITE_DOPOST=.true. export OCNRES='025' export ICERES='0.25' export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE='48' +export NPROC_ICE='80' # resolution dependent setting export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='225' +export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -85,23 +96,21 @@ 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 PSM_BC=1 export DDDMP=0.2 - -# P6 settings -export IALB=1 -export IEMS=1 -export LSM=1 -export IOPT_DVEG=1 -export IOPT_CRS=1 -export IOPT_RAD=1 -export IOPT_ALB=2 -export IOPT_STC=1 +export NSTF_NAME=2,1,0,0,0 + +# P7 settings +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 export CPLWAV='.T.' export CPLWAV2ATM='.T.' @@ -114,22 +123,28 @@ 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" -# P6 settings -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNALBC2="'global_albedo4.1x1.grb'," -export FNTG3C="'global_tg3clim.2.6x1.5.grb'," -export FNVEGC="'global_vegfrac.0.144.decpercent.grb'," -export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +# P7 settings +export FNALBC="'C384.snowfree_albedo.tileX.nc'," +export FNALBC2="'C384.facsf.tileX.nc'," +export FNTG3C="'C384.substrate_temperature.tileX.nc'," +export FNVEGC="'C384.vegetation_greenness.tileX.nc'," +export FNVETC="'C384.vegetation_type.tileX.nc'," +export FNSOTC="'C384.soil_type.tileX.nc'," export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," -export FNVMNC="'global_shdmin.0.144x0.144.grb'," -export FNVMXC="'global_shdmax.0.144x0.144.grb'," -export FNSLPC="'global_slope.1x1.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," -export LANDICE=".true." +export FNVMNC="'C384.vegetation_greenness.tileX.nc'," +export FNVMXC="'C384.vegetation_greenness.tileX.nc'," +export FNSLPC="'C384.slope_type.tileX.nc'," +export FNABSC="'C384.maximum_snow_albedo.tileX.nc'," +export LANDICE=".false." export OZ_PHYS_NEW=".T." +# P7b +export IAER=1011 +export DO_UGWP_V1=".true." +export KTHERM=2 +export TFREEZE_OPTION='mushy' + export MOM6_USE_WAVES='True' export MOM6_RIVER_RUNOFF='True' export MOM6_RESTART_SETTING="r" @@ -137,13 +152,14 @@ export MOM6_REPRO_LA='True' export RUNID="cpcice" -export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} -export INPUT_NML=input.benchmark_v16.nml.IN +export INPUT_NML=input.benchmark_v16_p7b.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_bmark_v16_template" -export CCPP_SUITE="FV3_GFS_v16_coupled" +export DIAG_TABLE="diag_table_bmark_v16_merra2_template" +export CCPP_SUITE="FV3_GFS_v16_coupled_nsstNoahmpUGWPv1" export RT35D='.T.' -export FV3_RUN=cpld_bmark_run.IN +export FV3_RUN=cpld_bmark_tiled_run.IN diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac deleted file mode 100644 index 574c3dfea6..0000000000 --- a/tests/tests/cpld_bmarkfrac +++ /dev/null @@ -1,142 +0,0 @@ -# -# 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="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="FV3_GFS_v15p2_coupled" - -export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16_35d b/tests/tests/cpld_bmarkfrac_v16_35d deleted file mode 100644 index 384b13efe2..0000000000 --- a/tests/tests/cpld_bmarkfrac_v16_35d +++ /dev/null @@ -1,116 +0,0 @@ -# -# 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 OUTPUT_GRID="'gaussian_grid'" - -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 - -# P6 settings -export IALB=1 -export IEMS=1 -export LSM=1 -export IOPT_DVEG=1 -export IOPT_CRS=1 -export IOPT_RAD=1 -export IOPT_ALB=2 -export IOPT_STC=1 - -# 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" - -# P6 settings -export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," -export FNALBC2="'global_albedo4.1x1.grb'," -export FNTG3C="'global_tg3clim.2.6x1.5.grb'," -export FNVEGC="'global_vegfrac.0.144.decpercent.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 FNVMNC="'global_shdmin.0.144x0.144.grb'," -export FNVMXC="'global_shdmax.0.144x0.144.grb'," -export FNSLPC="'global_slope.1x1.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," -export LANDICE=".true." - -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 CCPP_SUITE="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 deleted file mode 100644 index f19a958979..0000000000 --- a/tests/tests/cpld_bmarkfrac_wave +++ /dev/null @@ -1,151 +0,0 @@ -# -# 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="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" - -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 CCPP_SUITE="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 deleted file mode 100644 index 05651b6d5b..0000000000 --- a/tests/tests/cpld_bmarkfrac_wave_35d +++ /dev/null @@ -1,114 +0,0 @@ -# -# 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 WW3RSTDTHR=${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 ww3gline="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 1 1 0.00 1.00 F" - -export INPUT_NML=input.benchmark_ccpp.nml.IN - -export FIELD_TABLE="field_table.gfdlmp" -export DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="FV3_GFS_v15p2_coupled" - -export RT35D='.T.' -export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_ca b/tests/tests/cpld_ca index d93904af62..a3ce441655 100644 --- a/tests/tests/cpld_ca +++ b/tests/tests/cpld_ca @@ -60,5 +60,6 @@ export_cpl export DO_CA=.T. export CA_SGS=.T. export CA_GLOBAL=.T. +export eps_imesh='2.5e-1' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control b/tests/tests/cpld_control index f4bfd0d468..52446189fd 100644 --- a/tests/tests/cpld_control +++ b/tests/tests/cpld_control @@ -59,5 +59,6 @@ export_cpl export RESTART_INTERVAL="12" export RESTART_N=${RESTART_INTERVAL} +export eps_imesh='2.5e-1' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c384 b/tests/tests/cpld_control_c384 index 566d6b6cd2..38c7035267 100644 --- a/tests/tests/cpld_control_c384 +++ b/tests/tests/cpld_control_c384 @@ -5,18 +5,18 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025" export CNTL_DIR="cpld_control_c384" -export LIST_FILES="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ +export LIST_FILES="sfcf012.tile1.nc \ + sfcf012.tile2.nc \ + sfcf012.tile3.nc \ + sfcf012.tile4.nc \ + sfcf012.tile5.nc \ + sfcf012.tile6.nc \ + atmf012.tile1.nc \ + atmf012.tile2.nc \ + atmf012.tile3.nc \ + atmf012.tile4.nc \ + atmf012.tile5.nc \ + atmf012.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -53,13 +53,15 @@ export LIST_FILES="sfcf024.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-03-43200.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" export_fv3 export_cpl -export RESTART_INTERVAL="12" +export DAYS='0.50' +export FHMAX='12' +export RESTART_INTERVAL="6" export RESTART_N=${RESTART_INTERVAL} export TASKS=$TASKS_cpl_c384 diff --git a/tests/tests/cpld_control_wave b/tests/tests/cpld_control_wave index 2567a0c3b0..d0ff546c4d 100644 --- a/tests/tests/cpld_control_wave +++ b/tests/tests/cpld_control_wave @@ -78,4 +78,5 @@ export NEMS_CONFIGURE="nems.configure.cpld_wave.IN" export CPLWAV='.T.' export CPLWAV2ATM='.T.' +export eps_imesh='2.5e-1' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_controlfrac b/tests/tests/cpld_controlfrac deleted file mode 100644 index 22fb1ba6c7..0000000000 --- a/tests/tests/cpld_controlfrac +++ /dev/null @@ -1,66 +0,0 @@ -# -# 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="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 deleted file mode 100644 index 25f77087e9..0000000000 --- a/tests/tests/cpld_controlfrac_c192 +++ /dev/null @@ -1,124 +0,0 @@ -# -# 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="sfcf048.tile1.nc \ - sfcf048.tile2.nc \ - sfcf048.tile3.nc \ - sfcf048.tile4.nc \ - sfcf048.tile5.nc \ - sfcf048.tile6.nc \ - atmf048.tile1.nc \ - atmf048.tile2.nc \ - atmf048.tile3.nc \ - atmf048.tile4.nc \ - atmf048.tile5.nc \ - atmf048.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 deleted file mode 100644 index 098363fbeb..0000000000 --- a/tests/tests/cpld_controlfrac_c384 +++ /dev/null @@ -1,124 +0,0 @@ -# -# cpld_controlfrac_c384 frac grid test -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - frac grid " - -export CNTL_DIR="cpld_controlfrac_c384" - -export LIST_FILES="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 RESTART_INTERVAL="12" -export RESTART_N=${RESTART_INTERVAL} - -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} - -# 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.t766.1536.768.grb'," -export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," - -export MOM6_RIVER_RUNOFF='True' - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug b/tests/tests/cpld_debug index 4c9c2a671d..9de11431a3 100644 --- a/tests/tests/cpld_debug +++ b/tests/tests/cpld_debug @@ -60,9 +60,8 @@ export_cpl export DAYS="0.25" export FHMAX="6" export NFHOUT_HF="1" -# requires extra time -export WLCLK=60 export RESTART_N=${FHMAX} +export eps_imesh='2.5e-1' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debugfrac b/tests/tests/cpld_debugfrac deleted file mode 100644 index 1f53da8497..0000000000 --- a/tests/tests/cpld_debugfrac +++ /dev/null @@ -1,71 +0,0 @@ -# -# 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="sfcf006.tile1.nc \ - sfcf006.tile2.nc \ - sfcf006.tile3.nc \ - sfcf006.tile4.nc \ - sfcf006.tile5.nc \ - sfcf006.tile6.nc \ - atmf006.tile1.nc \ - atmf006.tile2.nc \ - atmf006.tile3.nc \ - atmf006.tile4.nc \ - atmf006.tile5.nc \ - atmf006.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_decomp b/tests/tests/cpld_decomp index 1848aa823d..f68536fe27 100644 --- a/tests/tests/cpld_decomp +++ b/tests/tests/cpld_decomp @@ -59,5 +59,6 @@ export_cpl export INPES='6' export JNPES='4' +export eps_imesh='2.5e-1' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart b/tests/tests/cpld_restart index c19bd7f185..e2fe15d8cf 100644 --- a/tests/tests/cpld_restart +++ b/tests/tests/cpld_restart @@ -65,18 +65,20 @@ export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( $ export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" # ATM warm start -WARM_START='.T.' -MAKE_NH='.F.' -NA_INIT='0' -EXTERNAL_IC='.F.' -NGGPS_IC='.F.' -MOUNTAIN='.T.' +export WARM_START='.T.' +export MAKE_NH='.F.' +export NA_INIT='0' +export EXTERNAL_IC='.F.' +export NGGPS_IC='.F.' +export MOUNTAIN='.T.' # ICE warm start -RUNTYPE='continue' +export CICERUNTYPE='continue' +export RUNTYPE='continue' export USE_RESTART_TIME='.true.' # MOM6 warm start export MOM6_RESTART_SETTING="r" +export eps_imesh='2.5e-1' export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark deleted file mode 100644 index 89e68bcc63..0000000000 --- a/tests/tests/cpld_restart_bmark +++ /dev/null @@ -1,154 +0,0 @@ -# -# 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="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="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_bmark_v16 similarity index 93% rename from tests/tests/cpld_restart_bmarkfrac_v16 rename to tests/tests/cpld_restart_bmark_v16 index 5d3f9bd8f8..97cde08478 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmark_v16 @@ -1,10 +1,10 @@ # -# cpld_restart_bmarkfrac_v16 test +# cpld_restart_bmark_v16 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - frac grid - v16" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - restart - v16" -export CNTL_DIR="cpld_bmarkfrac_v16" +export CNTL_DIR="cpld_bmark_v16" export LIST_FILES="sfcf006.nc \ atmf006.nc \ @@ -97,7 +97,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='225' +export DT_ATMOS='300' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -108,9 +108,6 @@ export CPL_FAST=${DT_ATMOS} 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 @@ -157,15 +154,16 @@ 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.' +export WARM_START='.T.' +export MAKE_NH='.F.' +export NA_INIT='0' +export EXTERNAL_IC='.F.' +export NGGPS_IC='.F.' +export MOUNTAIN='.T.' # ICE warm start -RUNTYPE='continue' +export CICERUNTYPE='continue' +export RUNTYPE='continue' export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_v16.nml.IN diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac deleted file mode 100644 index 5cc7f29b8d..0000000000 --- a/tests/tests/cpld_restart_bmarkfrac +++ /dev/null @@ -1,157 +0,0 @@ -# -# 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="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 DIAG_TABLE="diag_table_bmark_template" -export CCPP_SUITE="FV3_GFS_v15p2_coupled" - -export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_c192 b/tests/tests/cpld_restart_c192 index 8d9a8e635a..cbbba0be11 100644 --- a/tests/tests/cpld_restart_c192 +++ b/tests/tests/cpld_restart_c192 @@ -123,15 +123,16 @@ 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.' +export WARM_START='.T.' +export MAKE_NH='.F.' +export NA_INIT='0' +export EXTERNAL_IC='.F.' +export NGGPS_IC='.F.' +export MOUNTAIN='.T.' # ICE warm start -RUNTYPE='continue' +export CICERUNTYPE='continue' +export RUNTYPE='continue' export USE_RESTART_TIME='.true.' # MOM6 warm start diff --git a/tests/tests/cpld_restart_c384 b/tests/tests/cpld_restart_c384 index 12ab8217d7..5de12199ba 100644 --- a/tests/tests/cpld_restart_c384 +++ b/tests/tests/cpld_restart_c384 @@ -5,18 +5,18 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384 MX025 - export CNTL_DIR="cpld_control_c384" -export LIST_FILES="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ +export LIST_FILES="sfcf012.tile1.nc \ + sfcf012.tile2.nc \ + sfcf012.tile3.nc \ + sfcf012.tile4.nc \ + sfcf012.tile5.nc \ + sfcf012.tile6.nc \ + atmf012.tile1.nc \ + atmf012.tile2.nc \ + atmf012.tile3.nc \ + atmf012.tile4.nc \ + atmf012.tile5.nc \ + atmf012.tile6.nc \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -53,13 +53,15 @@ export LIST_FILES="sfcf024.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-03-43200.nc \ + RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc" export_fv3 export_cpl -export FHROT='12' +export DAYS='0.50' +export FHMAX='12' +export FHROT='6' export RESTART_N=$((FHMAX-$FHROT)) export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} )))0000" @@ -123,15 +125,16 @@ 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.' +export WARM_START='.T.' +export MAKE_NH='.F.' +export NA_INIT='0' +export EXTERNAL_IC='.F.' +export NGGPS_IC='.F.' +export MOUNTAIN='.T.' # ICE warm start -RUNTYPE='continue' +export CICERUNTYPE='continue' +export RUNTYPE='continue' export USE_RESTART_TIME='.true.' # MOM6 warm start diff --git a/tests/tests/cpld_restartfrac b/tests/tests/cpld_restartfrac deleted file mode 100644 index 2495994433..0000000000 --- a/tests/tests/cpld_restartfrac +++ /dev/null @@ -1,85 +0,0 @@ -# -# 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="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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 deleted file mode 100644 index cc38f911be..0000000000 --- a/tests/tests/cpld_restartfrac_c192 +++ /dev/null @@ -1,144 +0,0 @@ -# -# 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="sfcf048.tile1.nc \ - sfcf048.tile2.nc \ - sfcf048.tile3.nc \ - sfcf048.tile4.nc \ - sfcf048.tile5.nc \ - sfcf048.tile6.nc \ - atmf048.tile1.nc \ - atmf048.tile2.nc \ - atmf048.tile3.nc \ - atmf048.tile4.nc \ - atmf048.tile5.nc \ - atmf048.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_restartfrac_c384 b/tests/tests/cpld_restartfrac_c384 deleted file mode 100644 index 318e431ca5..0000000000 --- a/tests/tests/cpld_restartfrac_c384 +++ /dev/null @@ -1,143 +0,0 @@ -# -# 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="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.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' - -# 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.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 index 991243da75..7e9bcf6416 100644 --- a/tests/tests/datm_bulk_cfsr +++ b/tests/tests/datm_bulk_cfsr @@ -17,5 +17,6 @@ export IATM=1760 export JATM=880 export flux_scheme='-1' +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_bulk_gefs b/tests/tests/datm_bulk_gefs index fe5cb1459f..9e19eaf5ac 100644 --- a/tests/tests/datm_bulk_gefs +++ b/tests/tests/datm_bulk_gefs @@ -15,5 +15,6 @@ export DATM_SRC="GEFS" export FILENAME_BASE='gefs.' export flux_scheme='-1' +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_gefs.IN diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index e3a1c8e333..e9642df4f8 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -17,4 +17,5 @@ export IATM=1760 export JATM=880 export RESTART_N=12 export flux_scheme='-1' +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index 137ea518a6..3564aa81e8 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -26,4 +26,5 @@ export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" export RESTART_N=12 export flux_scheme='-1' +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index ac959229c1..7b5ef75cc4 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -16,4 +16,5 @@ export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 export RESTART_N=12 +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index 3f5b045482..a63917ac74 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -25,4 +25,5 @@ export mesh_file="gefs_mesh.nc" export MESH_ATM="DATM_INPUT/${mesh_file}" export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" export RESTART_N=12 +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index 82cec41e20..33d5aabc4f 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -18,4 +18,5 @@ export JATM=880 export DAYS="0.25" export FHMAX=6 export RESTART_N=${FHMAX} +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_multiple_files_cfsr b/tests/tests/datm_cdeps_multiple_files_cfsr index ec8c2ea788..75a6f76ed6 100644 --- a/tests/tests/datm_cdeps_multiple_files_cfsr +++ b/tests/tests/datm_cdeps_multiple_files_cfsr @@ -15,4 +15,5 @@ export IATM=1760 export JATM=880 export RESTART_N=12 export stream_files="DATM_INPUT/cfsr.2011100100.nc DATM_INPUT/cfsr.2011100106.nc DATM_INPUT/cfsr.2011100112.nc DATM_INPUT/cfsr.2011100118.nc DATM_INPUT/cfsr.2011100200.nc" +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index d291ca5b02..e83ed29a44 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -10,15 +10,19 @@ 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" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc" export_datm_cdeps -export WLCLK=40 export DATM_SRC="CFSR" export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export TASKS=$TASKS_cdeps_025 export TPN=$TPN_cdeps_025 diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 082229a115..cf2d0a45db 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -10,13 +10,17 @@ 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" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc" export_datm_cdeps export atm_datamode="GEFS" +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' -export WLCLK=40 export IATM=1536 export JATM=768 export ATM_NX_GLB=$IATM diff --git a/tests/tests/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index 6bd01ae4dc..b99869e25b 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -20,7 +20,9 @@ export FHOUT=12 export WARM_START='.T.' export FHROT=12 export RESTART_N=$((FHMAX-$FHROT)) +export CICERUNTYPE='continue' export RUNTYPE='continue' export USE_RESTART_TIME='.true.' export MOM6_RESTART_SETTING="r" +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_control_cfsr b/tests/tests/datm_control_cfsr index 0707918590..b542d9658b 100644 --- a/tests/tests/datm_control_cfsr +++ b/tests/tests/datm_control_cfsr @@ -16,4 +16,5 @@ export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 export RESTART_N=12 +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_control_gefs b/tests/tests/datm_control_gefs index 176170a8a9..83cc234fb2 100644 --- a/tests/tests/datm_control_gefs +++ b/tests/tests/datm_control_gefs @@ -11,4 +11,5 @@ export LIST_FILES="RESTART/MOM.res.nc \ RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" export_datm +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_gefs.IN diff --git a/tests/tests/datm_debug_cfsr b/tests/tests/datm_debug_cfsr index d1fab439bb..686b8bf92a 100644 --- a/tests/tests/datm_debug_cfsr +++ b/tests/tests/datm_debug_cfsr @@ -18,4 +18,5 @@ export JATM=880 export DAYS="0.25" export FHMAX="6" export RESTART_N=${FHMAX} +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/datm_mx025_cfsr b/tests/tests/datm_mx025_cfsr index 78aaab184d..801a119e58 100644 --- a/tests/tests/datm_mx025_cfsr +++ b/tests/tests/datm_mx025_cfsr @@ -10,15 +10,19 @@ 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" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc" export_datm -export WLCLK=40 export DATM_SRC="CFSR" export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export TASKS=$TASKS_datm_025 export TPN=$TPN_datm_025 diff --git a/tests/tests/datm_mx025_gefs b/tests/tests/datm_mx025_gefs index a7e6201ab8..de30025b23 100644 --- a/tests/tests/datm_mx025_gefs +++ b/tests/tests/datm_mx025_gefs @@ -10,11 +10,15 @@ 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" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc" export_datm -export WLCLK=40 +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' export TASKS=$TASKS_datm_025 export TPN=$TPN_datm_025 diff --git a/tests/tests/datm_restart_cfsr b/tests/tests/datm_restart_cfsr index 6d7e86015f..700fbeec1d 100644 --- a/tests/tests/datm_restart_cfsr +++ b/tests/tests/datm_restart_cfsr @@ -20,7 +20,9 @@ export FHMAX="24" export FHROT="12" export WARM_START='.T.' export RESTART_N=$((FHMAX-$FHROT)) +export CICERUNTYPE='continue' export RUNTYPE='continue' export USE_RESTART_TIME='.true.' export MOM6_RESTART_SETTING="r" +export eps_imesh='2.5e-1' export FV3_RUN=cpld_datm_cfsr.IN diff --git a/tests/tests/fv3_gsd_diag_debug b/tests/tests/fv3_gsd_diag_debug new file mode 100644 index 0000000000..c197e466ed --- /dev/null +++ b/tests/tests/fv3_gsd_diag_debug @@ -0,0 +1,74 @@ +############################################################################### +# +# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM) plus extra diagnostics +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP GSD diagnostic results with previous trunk version" + +export CNTL_DIR=fv3_gsd_diag_debug + +export LIST_FILES="sfcf000.tile1.nc \ + sfcf000.tile2.nc \ + sfcf000.tile3.nc \ + sfcf000.tile4.nc \ + sfcf000.tile5.nc \ + sfcf000.tile6.nc \ + sfcf001.tile1.nc \ + sfcf001.tile2.nc \ + sfcf001.tile3.nc \ + sfcf001.tile4.nc \ + sfcf001.tile5.nc \ + sfcf001.tile6.nc \ + atmf000.tile1.nc \ + atmf000.tile2.nc \ + atmf000.tile3.nc \ + atmf000.tile4.nc \ + atmf000.tile5.nc \ + atmf000.tile6.nc \ + atmf001.tile1.nc \ + atmf001.tile2.nc \ + atmf001.tile3.nc \ + atmf001.tile4.nc \ + atmf001.tile5.nc \ + atmf001.tile6.nc" + +export_fv3 + +export DT_ATMOS="450" +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. + +export IALB=2 +export IEMS=2 + +export FV3_RUN=gsd_run.IN +export CCPP_SUITE=FV3_GSD_v0 +export INPUT_NML=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 WLCLK=30 + +export FDIAG=0,1,2 +export FHZERO=1 +export LDIAG3D=.true. +export QDIAG3D=.true. +export MAX_OUTPUT_FIELDS=500 +export DIAG_TABLE_ADDITIONAL=diag_additional_gsd_dtend +export PRINT_DIFF_PGR=.true. + +export FHMAX=2 +export NFHOUT=1 +export NFHMAX_HF=12 +export NFHOUT_HF=1 + diff --git a/tests/tests/fv3_gsd_dtend_debug b/tests/tests/fv3_gsd_dtend_debug deleted file mode 100644 index 5faa200ae2..0000000000 --- a/tests/tests/fv3_gsd_dtend_debug +++ /dev/null @@ -1,112 +0,0 @@ -############################################################################### -# -# FV3 CCPP GSD (GF CU + Thompson MP + MYNN PBL + RUC LSM) plus extra diagnostics -# -############################################################################### - -export TEST_DESCR="Compare FV3 CCPP GSD results with previous trunk version" - -export CNTL_DIR=fv3_gsd_dtend_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 - sfcf000.tile1.nc \ - sfcf000.tile2.nc \ - sfcf000.tile3.nc \ - sfcf000.tile4.nc \ - sfcf000.tile5.nc \ - sfcf000.tile6.nc \ - sfcf002.tile1.nc \ - sfcf002.tile2.nc \ - sfcf002.tile3.nc \ - sfcf002.tile4.nc \ - sfcf002.tile5.nc \ - sfcf002.tile6.nc \ - atmf000.tile1.nc \ - atmf000.tile2.nc \ - atmf000.tile3.nc \ - atmf000.tile4.nc \ - atmf000.tile5.nc \ - atmf000.tile6.nc \ - atmf002.tile1.nc \ - atmf002.tile2.nc \ - atmf002.tile3.nc \ - atmf002.tile4.nc \ - atmf002.tile5.nc \ - atmf002.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 FDIAG=0,1,2,3,4,5,6 -export FHZERO=1 -export LDIAG3D=.true. -export QDIAG3D=.true. -export MAX_OUTPUT_FIELDS=400 -export DIAG_TABLE_ADDITIONAL=diag_additional_gsd_dtend - -export DT_ATMOS="450" - -export FHMAX=2 -export NFHOUT=1 -export NFHMAX_HF=12 -export NFHOUT_HF=1 - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.F. -export LRADAR=.T. -export LTAEROSOL=.T. - -export IALB=2 -export IEMS=2 - -export FV3_RUN=gsd_run.IN -export CCPP_SUITE=FV3_GSD_v0 -export INPUT_NML=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 WLCLK=30 - diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart index 2332b9629a..415bebad8e 100644 --- a/tests/tests/regional_restart +++ b/tests/tests/regional_restart @@ -36,7 +36,7 @@ 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 +# 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. diff --git a/tests/utest b/tests/utest index 70965bcf8c..7a0e0a6ffa 100755 --- a/tests/utest +++ b/tests/utest @@ -79,16 +79,14 @@ build_utests() { MAKE_OPT=$base_opt ;; bit) - if [[ $base_opt =~ "32BIT=Y" ]]; then - MAKE_OPT=$(echo $base_opt | sed -e 's/32BIT=Y/32BIT=N/') - elif [[ ${base_opt} =~ "32BIT=N" ]]; then - MAKE_OPT=$(echo $base_opt | sed -e 's/32BIT=N/32BIT=Y/') + if [[ $base_opt =~ "-D32BIT=ON" ]]; then + MAKE_OPT=$(echo $base_opt | sed -e 's/-D32BIT=ON//') else - MAKE_OPT="$base_opt 32BIT=Y" + MAKE_OPT="$base_opt -D32BIT=ON" fi ;; dbg) - MAKE_OPT="$base_opt 32BIT=Y DEBUG=Y" + MAKE_OPT="$base_opt -DDEBUG=ON" ;; esac MAKE_OPT=$(echo $MAKE_OPT | sed -e 's/^ *//' -e 's/ *$//') diff --git a/tests/utest.bld b/tests/utest.bld index 7a8eade9b5..e9920399ac 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,10 +1,9 @@ -control | APP=ATM SUITES=FV3_GFS_v16 -control_wrtGauss_netcdf_parallel | APP=ATM SUITES=FV3_GFS_v16 -control_stochy | APP=ATM SUITES=FV3_GFS_v16 -control_ca | APP=ATM SUITES=FV3_GFS_v16 -control_lheatstrg | APP=ATM SUITES=FV3_GFS_v16 -control_multigases | APP=ATM SUITES=FV3_GFS_v16_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -control_csawmg | APP=ATM SUITES=FV3_GFS_v16_csawmg -control_flake | APP=ATM SUITES=FV3_GFS_v16_flake -regional_control | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -cpld_control | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_wrtGauss_netcdf_parallel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_stochy | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_ca | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_lheatstrg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_csawmg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg +control_flake | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_flake +regional_control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn -D32BIT=ON +cpld_control | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst diff --git a/tests/utests/dbg.sh b/tests/utests/dbg.sh index 500115e82e..aacef79a5a 100644 --- a/tests/utests/dbg.sh +++ b/tests/utests/dbg.sh @@ -2,13 +2,26 @@ set -eu source $PATHRT/utests/std.sh if [[ $application == 'global' ]]; then + LIST_FILES="sfcf000.nc sfcf001.nc atmf000.nc atmf001.nc" + FHMAX=1 + DAYS=0.041667 + NFHOUT=3 + NFHMAX_HF=12 + NFHOUT_HF=1 WLCLK=60 elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for debug" exit 1 elif [[ $application == 'cpld' ]]; then - echo "Coupled application not yet implemented for debug" - exit 1 + FHMAX=6 + DAYS=0.25 + NFHOUT_HF=1 + RESTART_INTERVAL=${FHMAX} + RESTART_N=${FHMAX} + LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/sfcf024/sfcf006/g" \ + | sed -E "s/atmf024/atmf006/g" \ + | sed -E "s/2016-10-04-00000/2016-10-03-21600/g" \ + | sed -e "s/^ *//" -e "s/ *$//") fi source $PATHRT/utests/wrt_env.sh diff --git a/tests/utests/mpi.sh b/tests/utests/mpi.sh index d7220f2a43..b03acb05ee 100644 --- a/tests/utests/mpi.sh +++ b/tests/utests/mpi.sh @@ -22,8 +22,3 @@ fi (test $CI_TEST == 'true') && source $PATHRT/utests/cmp_proc_bind.sh source $PATHRT/utests/wrt_env.sh - -cat <>${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env -export WRITE_GROUP=${WRITE_GROUP} -export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} -EOF diff --git a/tests/utests/rst.sh b/tests/utests/rst.sh index 66b64868f3..6e96011c81 100644 --- a/tests/utests/rst.sh +++ b/tests/utests/rst.sh @@ -11,6 +11,7 @@ elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for restart" exit 1 elif [[ $application == 'cpld' ]]; then + CICERUNTYPE='continue' RUNTYPE='continue' USE_RESTART_TIME='.true.' MOM6_RESTART_SETTING="r" @@ -40,12 +41,12 @@ cat <>${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env export FHROT=${FHROT} export RESTART_FILE_PREFIX=${RESTART_FILE_PREFIX} export NSTF_NAME=${NSTF_NAME} +export CICERUNTYPE=${CICERUNTYPE:-} export RUNTYPE=${RUNTYPE:-} export USE_RESTART_TIME=${USE_RESTART_TIME:-} export MOM6_RESTART_SETTING=${MOM6_RESTART_SETTING:-} export RESTART_FILE_SUFFIX_HRS=${RESTART_FILE_SUFFIX_HRS:-} export RESTART_FILE_SUFFIX_SECS=${RESTART_FILE_SUFFIX_SECS:-} -export RESTART_N=${RESTART_N:-} export DEP_RUN=${DEP_RUN:-} export WARM_START=${WARM_START} export NGGPS_IC=${NGGPS_IC} @@ -54,5 +55,4 @@ export MAKE_NH=${MAKE_NH} export MOUNTAIN=${MOUNTAIN} export NA_INIT=${NA_INIT} export FDIAG=${FDIAG} -export LIST_FILES="${LIST_FILES}" EOF diff --git a/tests/utests/std.sh b/tests/utests/std.sh index b2b7e2d9ca..5e32cfbefd 100644 --- a/tests/utests/std.sh +++ b/tests/utests/std.sh @@ -4,8 +4,13 @@ if [[ $application == 'global' ]]; then if [[ $CI_TEST == 'true' ]]; then INPES=3 JNPES=2 + WRITE_GROUP=1 + WRTTASK_PER_GROUP=12 TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP)) RESTART_INTERVAL=$((FHMAX/2)) + NFHOUT=6 + NFHMAX_HF=-1 + NFHOUT_HF=-1 fi elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then @@ -23,6 +28,8 @@ elif [[ $application == 'cpld' ]]; then ocn_petlist_bounds="30 39" ice_petlist_bounds="40 45" TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 10 + 6)) + RESTART_INTERVAL=12 + RESTART_N=${RESTART_INTERVAL} fi fi diff --git a/tests/utests/wrt_env.sh b/tests/utests/wrt_env.sh index d5b48852d2..2a1236c5d3 100644 --- a/tests/utests/wrt_env.sh +++ b/tests/utests/wrt_env.sh @@ -4,9 +4,12 @@ export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export FHMAX=${FHMAX} export DAYS=${DAYS} -export RESTART_INTERVAL=${RESTART_INTERVAL} +export RESTART_INTERVAL=${RESTART_INTERVAL:-} +export RESTART_N=${RESTART_N:-} export INPES=${INPES} export JNPES=${JNPES} +export WRITE_GROUP=${WRITE_GROUP} +export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} export NPROC_ICE=${NPROC_ICE:-} export med_petlist_bounds="${med_petlist_bounds:-}" export atm_petlist_bounds="${atm_petlist_bounds:-}" @@ -18,4 +21,8 @@ export TPN=${TPN} export NODES=${NODES} export OMP_ENV="${OMP_ENV:-}" export MPI_PROC_BIND="${MPI_PROC_BIND:-}" +export NFHOUT=${NFHOUT} +export NFHMAX_HF=${NFHMAX_HF} +export NFHOUT_HF=${NFHOUT_HF} +export LIST_FILES="${LIST_FILES}" EOF