diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index a28608f48..bc1662933 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,29 +1,46 @@ +# PR Checklist + +- [ ] Ths PR is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR. Please consult the ufs-weather-model [wiki](https://github.com/ufs-community/ufs-weather-model/wiki/Making-code-changes-in-the-UFS-weather-model-and-its-subcomponents) if you are unsure how to do this. + +- [ ] This PR has been tested using a branch which is up-to-date with the top of all sub-component repositories except for those sub-components which are the subject of this PR + +- [ ] An Issue describing the work contained in this PR has been created either in the subcomponent(s) or in the ufs-weather-model. The Issue should be created in the repository that is most relevant to the changes in contained in the PR. The Issue and the dependent sub-component PR +are specified below. + +- [ ] If new or updated input data is required by this PR, it is clearly stated in the text of the PR. + +## Instructions: All subsequent sections of text should be filled in as appropriate. + +The information provided below allows the code managers to understand the changes relevant to this PR, whether those changes are in the ufs-weather-model repository or in a subcomponent repository. Ufs-weather-model code managers will use the information provided to add any applicable labels, assign reviewers and place it in the Commit Queue. Once the PR is in the Commit Queue, it is the PR owner's responsiblity to keep the PR up-to-date with the develop branch of ufs-weather-model. + ## Description -(Instructions: this, and all subsequent sections of text should be removed and filled in as appropriate.) -Provide a detailed description of what this PR does. -What bug does it fix, or what feature does it add? -Is a change of answers expected from this PR? -Are any library updates included in this PR (modulefiles etc.)? +Provide a detailed description of what this PR does. What bug does it fix, or what feature does it add? Is a change of answers expected from this PR? Are any library updates included in this PR (modulefiles etc.)? ### Issue(s) addressed Link the issues to be closed with this PR, whether in this repository, or in another repository. -(Remember, issues should always be created before starting work on a PR branch!) +(Remember, issues must always be created before starting work on a PR branch!) - fixes # - fixes noaa-emc/fv3atm/issues/ ## Testing -How were these changes tested? -What compilers / HPCs was it tested with? -Are the changes covered by regression tests? (If not, why? Do new tests need to be added?) -Have regression tests and unit tests (utests) been run? On which platforms and with which compilers? (Note that unit tests can only be run on tier-1 platforms) +How were these changes tested? What compilers / HPCs was it tested with? Are the changes covered by regression tests? (If not, why? Do new tests need to be added?) Have regression tests and unit tests (utests) been run? On which platforms and with which compilers? (Note that unit tests can only be run on tier-1 platforms) + +- [ ] hera.intel +- [ ] hera.gnu +- [ ] orion.intel +- [ ] cheyenne.intel +- [ ] cheyenne.gnu +- [ ] gaea.intel +- [ ] jet.intel +- [ ] wcoss_cray +- [ ] wcoss_dell_p3 ## Dependencies -If testing this branch requires non-default branches in other repositories, list them. -Those branches should have matching names (ideally) +If testing this branch requires non-default branches in other repositories, list them. Those branches should have matching names (ideally). Do PRs in upstream repositories need to be merged first? If so add the "waiting for other repos" label and list the upstream PRs diff --git a/.github/workflows/main.yml b/.github/workflows/build_test.yml similarity index 85% rename from .github/workflows/main.yml rename to .github/workflows/build_test.yml index 4afd19b6e..ae8e75dd7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/build_test.yml @@ -1,17 +1,15 @@ -name: Pull Request Tests +name: Pull request tests on: push: - branches: - - develop + branches: ['develop'] pull_request: - branches: - - develop + branches: ['develop'] jobs: setup: name: Set up - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 outputs: tn: ${{ steps.parse.outputs.tn }} @@ -46,7 +44,7 @@ jobs: build: name: Build (${{ matrix.bld_set }}) needs: setup - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: fail-fast: false @@ -85,8 +83,7 @@ jobs: utest: name: Unit test (${{ needs.setup.outputs.tn }}, ${{ matrix.test_set }}) needs: [setup,build] - runs-on: ubuntu-latest - #runs-on: self-hosted + runs-on: self-hosted strategy: fail-fast: false @@ -101,7 +98,7 @@ jobs: - name: Prepare artifacts run: | tar xvjf artifact.tar.bz2 && rm -f artifact.tar.bz2 - sudo docker load --input ${{ needs.setup.outputs.img }}.tar.gz && rm -f ${{ needs.setup.outputs.img }}.tar.gz + docker load --input ${{ needs.setup.outputs.img }}.tar.gz && rm -f ${{ needs.setup.outputs.img }}.tar.gz - name: Run utest run: ./ci.sh -n ${{ needs.setup.outputs.tn }} -r ${{ matrix.test_set }} @@ -117,5 +114,7 @@ jobs: if: ${{ always() }} run: | rm -f ci.sh ci.test - sudo docker rm my-container && sudo docker rmi ${{ needs.setup.outputs.img }}:latest - sudo docker volume rm DataVolume + docker stop my-container && docker rm my-container && docker rmi ${{ needs.setup.outputs.img }}:latest + docker volume rm DataVolume + #docker rmi minsukjinoaa/fv3-input-data:input-data-20210115 + rm -f memory_stat diff --git a/.github/workflows/manage.yml b/.github/workflows/manage_workflows.yml similarity index 84% rename from .github/workflows/manage.yml rename to .github/workflows/manage_workflows.yml index c933b36e6..96544c3ca 100644 --- a/.github/workflows/manage.yml +++ b/.github/workflows/manage_workflows.yml @@ -2,34 +2,36 @@ name: Manage workflows on: workflow_run: - workflows: ["Pull Request Tests"] + workflows: ["Pull request tests"] types: - requested jobs: job1: - name: Job 1 - runs-on: ubuntu-latest + name: Cancel workflows + runs-on: ubuntu-20.04 steps: - name: Checkout codes uses: actions/checkout@v2 - - name: Check if skip-ci is requested + - name: Check if run-ci is requested run: | + sleep 40 cd ${GITHUB_WORKSPACE}/tests/ci repo="${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/actions/runs" tr_id=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_id) tr_br=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_br) - check=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py check_skip) + check=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py check_run) echo "TRIGGER_ID=${tr_id}" >> $GITHUB_ENV echo "TRIGGER_BR=${tr_br}" >> $GITHUB_ENV - echo "skip-ci: ${check}" - if [[ $check == yes ]]; then - echo "skip-ci is requested" + echo "run-ci: ${check}" + if [[ $check == no ]]; then + echo "run-ci is not requested" echo "CURR_JOB=cancelled" >> $GITHUB_ENV curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" ${repo}/$tr_id/cancel else + echo "run-ci is requested" echo "CURR_JOB=running" >> $GITHUB_ENV fi diff --git a/.github/workflows/start_runners.yml b/.github/workflows/start_runners.yml new file mode 100644 index 000000000..423315de5 --- /dev/null +++ b/.github/workflows/start_runners.yml @@ -0,0 +1,33 @@ +name: Start runners + +on: + workflow_run: + workflows: ["Pull request tests"] + types: + - requested + +jobs: + job1: + name: Start AWS runners + runs-on: ubuntu-20.04 + + steps: + - name: Check out codes + uses: actions/checkout@v2 + + - name: Configure AWS + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + + - name: Check the status of build and start self-hosted runners + env: + aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} + run: | + cd ${GITHUB_WORKSPACE}/tests/ci + conclusion=$(cat ${GITHUB_EVENT_PATH} | ./build_status_check.py) + if [[ $conclusion == "success" ]]; then + aws ec2 start-instances --instance-ids $aws_instance_id + fi diff --git a/.github/workflows/stop_runners.yml b/.github/workflows/stop_runners.yml new file mode 100644 index 000000000..f3497318c --- /dev/null +++ b/.github/workflows/stop_runners.yml @@ -0,0 +1,25 @@ +name: Stop runners + +on: + workflow_run: + workflows: ["Pull request tests"] + types: + - completed + +jobs: + job1: + name: Stop AWS runners + runs-on: ubuntu-20.04 + + steps: + - name: Configure AWS + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + + - name: Stop self-hosted runners + env: + aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} + run: aws ec2 stop-instances --instance-ids $aws_instance_id diff --git a/CMakeLists.txt b/CMakeLists.txt index c1782977d..67ca10847 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -204,13 +204,7 @@ endif() ############################################################################### if(WW3) if(CMAKE_Platform) - if(${CMAKE_Platform} STREQUAL "hera.intel") - set(WW3_COMP "hera") - elseif(${CMAKE_Platform} STREQUAL "orion.intel") - set(WW3_COMP "orion") - elseif(${CMAKE_Platform} STREQUAL "cheyenne.intel") - set(WW3_COMP "cheyenne") - elseif(${CMAKE_Platform} STREQUAL "wcoss2") + if(${CMAKE_Platform} STREQUAL "wcoss2") set(WW3_COMP "wcoss_cray") elseif(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU") diff --git a/FV3 b/FV3 index 4516ae0c8..c4dff7856 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 4516ae0c84a03fb34f9034bd392aed6d03266c8d +Subproject commit c4dff78560fe86a5bf1495f4f24f782d90010acd diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 0c09b6261..2ca546261 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -16,6 +16,7 @@ elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} ${MOM6_Extra_FORTRAN_FLAGS}") # User option to build MOM6 solo executable set(MOM6SOLO OFF CACHE BOOL "Build MOM6 solo") @@ -27,7 +28,7 @@ include("mom6_files.cmake") add_library(mom6_obj OBJECT ${mom6_src_files}) set_target_properties(mom6_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_obj PRIVATE $) -target_include_directories(mom6_obj PRIVATE $ +target_include_directories(mom6_obj PRIVATE $ $) target_link_libraries(mom6_obj PRIVATE fms NetCDF::NetCDF_Fortran) @@ -39,7 +40,7 @@ target_link_libraries(mom6_obj PRIVATE fms add_library(mom6_nuopc_obj OBJECT ${mom6_nuopc_src_files}) set_target_properties(mom6_nuopc_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_nuopc_obj PRIVATE $) -target_include_directories(mom6_nuopc_obj PRIVATE $ +target_include_directories(mom6_nuopc_obj PRIVATE $ $) target_link_libraries(mom6_nuopc_obj PRIVATE mom6_obj fms @@ -54,7 +55,7 @@ add_library(mom6 STATIC $ $) target_include_directories(mom6 PUBLIC $ $) -target_include_directories(mom6 PUBLIC $ +target_include_directories(mom6 PUBLIC $ $) target_link_libraries(mom6 PUBLIC fms esmf @@ -72,7 +73,7 @@ if(MOM6SOLO) set_target_properties(mom6solo PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_solo) target_include_directories(mom6solo PRIVATE $) target_include_directories(mom6solo PRIVATE $) - target_include_directories(mom6solo PRIVATE $ + target_include_directories(mom6solo PRIVATE $ $) target_link_libraries(mom6solo PRIVATE mom6_obj fms diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index cdc7690f4..3703ca7dd 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit cdc7690f41fb747df435a07b92dcf3fa02420a6b +Subproject commit 3703ca7ddc3dbd18d205581d32e47aa828fed976 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index f36553641..a968f227a 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -46,6 +46,7 @@ list(APPEND mom6_src_files MOM6/src/diagnostics/MOM_PointAccel.F90 MOM6/src/diagnostics/MOM_debugging.F90 + MOM6/src/diagnostics/MOM_spatial_means.F90 MOM6/src/diagnostics/MOM_diagnostics.F90 MOM6/src/diagnostics/MOM_obsolete_diagnostics.F90 MOM6/src/diagnostics/MOM_obsolete_params.F90 @@ -96,33 +97,33 @@ list(APPEND mom6_src_files MOM6/src/framework/MOM_array_transform.F90 MOM6/src/framework/MOM_checksums.F90 MOM6/src/framework/MOM_coms.F90 - MOM6/src/framework/MOM_constants.F90 + MOM6/src/framework/MOM_coupler_types.F90 MOM6/src/framework/MOM_cpu_clock.F90 - MOM6/src/framework/MOM_diag_manager_wrapper.F90 + MOM6/src/framework/MOM_data_override.F90 MOM6/src/framework/MOM_diag_mediator.F90 MOM6/src/framework/MOM_diag_remap.F90 MOM6/src/framework/MOM_diag_vkernels.F90 MOM6/src/framework/MOM_document.F90 MOM6/src/framework/MOM_domains.F90 MOM6/src/framework/MOM_dyn_horgrid.F90 + MOM6/src/framework/MOM_ensemble_manager.F90 MOM6/src/framework/MOM_error_handler.F90 MOM6/src/framework/MOM_file_parser.F90 MOM6/src/framework/MOM_get_input.F90 MOM6/src/framework/MOM_hor_index.F90 MOM6/src/framework/MOM_horizontal_regridding.F90 + MOM6/src/framework/MOM_interpolate.F90 MOM6/src/framework/MOM_intrinsic_functions.F90 MOM6/src/framework/MOM_io.F90 MOM6/src/framework/MOM_random.F90 MOM6/src/framework/MOM_restart.F90 MOM6/src/framework/MOM_safe_alloc.F90 - MOM6/src/framework/MOM_spatial_means.F90 MOM6/src/framework/MOM_string_functions.F90 - MOM6/src/framework/MOM_time_manager.F90 - MOM6/src/framework/MOM_transform_FMS.F90 MOM6/src/framework/MOM_unit_scaling.F90 MOM6/src/framework/MOM_write_cputime.F90 MOM6/src/ice_shelf/MOM_ice_shelf.F90 + MOM6/src/ice_shelf/MOM_ice_shelf_diag_mediator.F90 MOM6/src/ice_shelf/MOM_ice_shelf_dynamics.F90 MOM6/src/ice_shelf/MOM_ice_shelf_initialize.F90 MOM6/src/ice_shelf/MOM_ice_shelf_state.F90 @@ -252,21 +253,34 @@ list(APPEND mom6_src_files MOM6/config_src/external/ODA_hooks/ocean_da_types.F90 MOM6/config_src/external/ODA_hooks/write_ocean_obs.F90 + MOM6/config_src/infra/FMS1/MOM_coms_infra.F90 + MOM6/config_src/infra/FMS1/MOM_constants.F90 + MOM6/config_src/infra/FMS1/MOM_couplertype_infra.F90 + MOM6/config_src/infra/FMS1/MOM_cpu_clock_infra.F90 + MOM6/config_src/infra/FMS1/MOM_data_override_infra.F90 + MOM6/config_src/infra/FMS1/MOM_diag_manager_infra.F90 + MOM6/config_src/infra/FMS1/MOM_domain_infra.F90 + MOM6/config_src/infra/FMS1/MOM_ensemble_manager_infra.F90 + MOM6/config_src/infra/FMS1/MOM_error_infra.F90 + MOM6/config_src/infra/FMS1/MOM_interp_infra.F90 + MOM6/config_src/infra/FMS1/MOM_io_infra.F90 + MOM6/config_src/infra/FMS1/MOM_time_manager.F90 + ) list(APPEND mom6_nuopc_src_files - MOM6/config_src/nuopc_driver/mom_cap.F90 - MOM6/config_src/nuopc_driver/time_utils.F90 - MOM6/config_src/nuopc_driver/mom_cap_methods.F90 - MOM6/config_src/nuopc_driver/mom_cap_time.F90 - MOM6/config_src/nuopc_driver/mom_ocean_model_nuopc.F90 - MOM6/config_src/nuopc_driver/mom_surface_forcing_nuopc.F90 + MOM6/config_src/drivers/nuopc_cap/mom_cap.F90 + MOM6/config_src/drivers/nuopc_cap/time_utils.F90 + MOM6/config_src/drivers/nuopc_cap/mom_cap_methods.F90 + MOM6/config_src/drivers/nuopc_cap/mom_cap_time.F90 + MOM6/config_src/drivers/nuopc_cap/mom_ocean_model_nuopc.F90 + MOM6/config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90 ) list(APPEND mom6_solo_src_files - MOM6/config_src/solo_driver/MESO_surface_forcing.F90 - MOM6/config_src/solo_driver/MOM_driver.F90 - MOM6/config_src/solo_driver/MOM_surface_forcing.F90 - MOM6/config_src/solo_driver/atmos_ocean_fluxes.F90 - MOM6/config_src/solo_driver/user_surface_forcing.F90 + MOM6/config_src/drivers/solo_driver/MESO_surface_forcing.F90 + MOM6/config_src/drivers/solo_driver/MOM_driver.F90 + MOM6/config_src/drivers/solo_driver/MOM_surface_forcing.F90 + MOM6/config_src/drivers/solo_driver/atmos_ocean_fluxes.F90 + MOM6/config_src/drivers/solo_driver/user_surface_forcing.F90 ) diff --git a/WW3 b/WW3 index a89e2a633..fc509248a 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit a89e2a6339a016522d3a84188756d0a4bb11be87 +Subproject commit fc509248a1cd397e138e65d57c1b10183fc64e2f diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaea.intel.cmake index c8a689be6..84390226f 100644 --- a/cmake/configure_gaea.intel.cmake +++ b/cmake/configure_gaea.intel.cmake @@ -1,3 +1,4 @@ set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) +set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/cheyenne.gnu/fv3 index b9b86004b..1ff61402c 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/cheyenne.gnu/fv3 @@ -42,4 +42,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/cheyenne.gnu/fv3_debug b/modulefiles/cheyenne.gnu/fv3_debug index 38d0a4a9a..1cbf4dbd0 100644 --- a/modulefiles/cheyenne.gnu/fv3_debug +++ b/modulefiles/cheyenne.gnu/fv3_debug @@ -42,4 +42,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/cheyenne.intel/fv3 b/modulefiles/cheyenne.intel/fv3 index 830e7c1f1..2c64847b3 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/cheyenne.intel/fv3 @@ -42,4 +42,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/cheyenne.intel/fv3_debug b/modulefiles/cheyenne.intel/fv3_debug index e757b778b..fd32e5ea2 100644 --- a/modulefiles/cheyenne.intel/fv3_debug +++ b/modulefiles/cheyenne.intel/fv3_debug @@ -42,4 +42,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/gaea.intel/fv3 b/modulefiles/gaea.intel/fv3 index 34b193edb..175b9702d 100644 --- a/modulefiles/gaea.intel/fv3 +++ b/modulefiles/gaea.intel/fv3 @@ -44,7 +44,7 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 # Needed at runtime: module load alps diff --git a/modulefiles/gaea.intel/fv3_debug b/modulefiles/gaea.intel/fv3_debug index e74d6f7d9..74c180a7d 100644 --- a/modulefiles/gaea.intel/fv3_debug +++ b/modulefiles/gaea.intel/fv3_debug @@ -44,7 +44,7 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 # Needed at runtime: module load alps diff --git a/modulefiles/hera.gnu/fv3 b/modulefiles/hera.gnu/fv3 index c20b313c4..31255b1b3 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/hera.gnu/fv3 @@ -39,4 +39,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/hera.intel/fv3 b/modulefiles/hera.intel/fv3 index cdbfa0e62..7b2013579 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/hera.intel/fv3 @@ -39,4 +39,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/hera.intel/fv3_debug b/modulefiles/hera.intel/fv3_debug index ce6eb2fe4..dd65fa1b9 100644 --- a/modulefiles/hera.intel/fv3_debug +++ b/modulefiles/hera.intel/fv3_debug @@ -39,4 +39,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/jet.intel/fv3 index e2762bd90..c94db9a4c 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/jet.intel/fv3 @@ -39,4 +39,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/jet.intel/fv3_debug b/modulefiles/jet.intel/fv3_debug index e2762bd90..c94db9a4c 100644 --- a/modulefiles/jet.intel/fv3_debug +++ b/modulefiles/jet.intel/fv3_debug @@ -39,4 +39,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 index 017eaabe1..55f9a7b72 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/orion.intel/fv3 @@ -39,4 +39,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/orion.intel/fv3_debug b/modulefiles/orion.intel/fv3_debug index 95d2d1571..7f3e02d60 100644 --- a/modulefiles/orion.intel/fv3_debug +++ b/modulefiles/orion.intel/fv3_debug @@ -39,4 +39,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/wcoss_cray/fv3 b/modulefiles/wcoss_cray/fv3 index 261052341..ef6fd67a9 100644 --- a/modulefiles/wcoss_cray/fv3 +++ b/modulefiles/wcoss_cray/fv3 @@ -53,7 +53,7 @@ module load gfsio/1.4.1 module load sfcio/1.4.1 module load sigio/2.3.2 -module load upp/10.0.0 +module load upp/10.0.4 ## WCOSS Cray execution prereqs: module load rca diff --git a/modulefiles/wcoss_cray/fv3_debug b/modulefiles/wcoss_cray/fv3_debug index 261052341..ef6fd67a9 100644 --- a/modulefiles/wcoss_cray/fv3_debug +++ b/modulefiles/wcoss_cray/fv3_debug @@ -53,7 +53,7 @@ module load gfsio/1.4.1 module load sfcio/1.4.1 module load sigio/2.3.2 -module load upp/10.0.0 +module load upp/10.0.4 ## WCOSS Cray execution prereqs: module load rca diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index 94fc924ff..a675477c4 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -41,4 +41,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/wcoss_dell_p3/fv3_debug index 3fcf0c73c..89b4a7ca8 100644 --- a/modulefiles/wcoss_dell_p3/fv3_debug +++ b/modulefiles/wcoss_dell_p3/fv3_debug @@ -41,4 +41,4 @@ module load nemsio/2.5.2 module load sp/2.3.3 module load w3emc/2.7.3 module load w3nco/2.4.1 -module load upp/10.0.0 +module load upp/10.0.4 diff --git a/stochastic_physics b/stochastic_physics index b6c12628d..c39bb8a09 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit b6c12628d64266134d39066d6e65ec8ddd5b5a22 +Subproject commit c39bb8a09a196a9dd17ea3fb52152b61ef2881ae diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index fdb44ea6f..0a298255a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 17 13:05:22 MST 2021 +Mon Mar 15 14:51:27 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfdlmp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -47,11 +47,14 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 74.402651 + Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -115,11 +118,14 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 132.929431 + Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -195,11 +201,14 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 185.078405 + Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -245,11 +254,14 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 98.924708 + Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,11 +325,14 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 89.298163 + Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -381,11 +396,14 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 143.825747 + Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -449,11 +467,14 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 251.902834 + Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,11 +538,14 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 257.274978 + Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +633,14 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 357.526628 + Test 009 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +704,14 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 167.791037 + Test 010 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +775,14 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 159.248824 + Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +846,14 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 182.146076 + Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +917,14 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 244.563424 + Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -899,11 +938,14 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK + +The total amount of wall time = 444.904050 + Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -961,11 +1003,14 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 301.645268 + Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1023,11 +1068,14 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 305.020664 + Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1053,11 +1101,14 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK + +The total amount of wall time = 77.388080 + Test 017 fv3_ccpp_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1121,11 +1172,14 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 134.497309 + Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1189,11 +1243,14 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 98.065764 + Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1257,11 +1314,14 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 193.482167 + Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1325,11 +1385,14 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 195.041792 + Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1399,22 +1462,28 @@ Checking test 022 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 177.886693 + Test 022 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_regional_control_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +The total amount of wall time = 188.380657 + Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,11 +1547,14 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 113.011953 + Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gsd_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,11 +1618,14 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 118.064604 + Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,11 +1689,14 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 185.973158 + Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,11 +1760,14 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 183.491656 + Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,11 +1831,14 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 113.668444 + Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1768,11 +1852,14 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK + +The total amount of wall time = 214.472761 + Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_31552/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_33218/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1830,9 +1917,12 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 301.664569 + Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 13:22:49 MST 2021 -Elapsed time: 00h:17m:28s. Have a nice day! +Mon Mar 15 15:08:50 MDT 2021 +Elapsed time: 00h:17m:23s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 361f44df7..b6fe96714 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 13:30:04 MST 2021 +Mon Mar 15 15:13:41 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.445367 + Test 001 fv3_ccpp_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_decomp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.992650 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_2threads_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 107.487710 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 23.733939 + Test 004 fv3_ccpp_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_read_inc_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.127170 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 129.408014 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 46.972747 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -430,9 +451,9 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.382240 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 46.881769 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.590770 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 123.939269 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stochy_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 57.687053 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_ca_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 29.662515 + Test 013 fv3_ccpp_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lndp_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.200055 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_iau_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.913407 + Test 015 fv3_ccpp_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_lheatstrg_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.610248 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_multigases_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 100.030948 + Test 017 fv3_ccpp_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_32bit_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1071,11 +1122,14 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 39.798607 + Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1127,11 +1181,14 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 332.262419 + Test 019 fv3_ccpp_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1194,54 +1251,87 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK + +The total amount of wall time = 352.713671 + Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +The total amount of wall time = 697.059129 + Test 021 fv3_ccpp_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_restart_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + +The total amount of wall time = 393.423672 + Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_quilt_prod +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 721.982896 + Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_hafs_prod +Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 719.201196 + +Test 024 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK + +The total amount of wall time = 719.995982 + +Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1374,15 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmp PASS + +The total amount of wall time = 53.034811 + +Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1332,12 +1425,15 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_gwd PASS +The total amount of wall time = 53.183759 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +Test 027 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1380,12 +1476,15 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_noahmp PASS +The total amount of wall time = 53.277267 + +Test 028 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1527,15 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_csawmg PASS +The total amount of wall time = 143.654699 + +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1578,15 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmf PASS + +The total amount of wall time = 59.495493 + +Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1629,15 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmfq PASS + +The total amount of wall time = 58.806768 + +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1572,12 +1680,15 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmp_32bit PASS +The total amount of wall time = 41.514249 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... +Test 032 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1624,12 +1735,15 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS + +The total amount of wall time = 72.929668 + +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1792,15 @@ Checking test 033 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_cpt PASS +The total amount of wall time = 337.243573 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +Test 034 fv3_ccpp_cpt PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ Checking test 034 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_gsd PASS +The total amount of wall time = 202.150818 + +Test 035 fv3_ccpp_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rap_prod -Checking test 035 fv3_ccpp_rap results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rap_prod +Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1958,15 @@ Checking test 035 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_rap PASS +The total amount of wall time = 102.012787 + +Test 036 fv3_ccpp_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_hrrr_prod -Checking test 036 fv3_ccpp_hrrr results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_hrrr_prod +Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_hrrr PASS + +The total amount of wall time = 106.934973 + +Test 037 fv3_ccpp_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1974,12 +2100,15 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson PASS + +The total amount of wall time = 96.340112 + +Test 038 fv3_ccpp_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +2171,15 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_thompson_no_aero PASS +The total amount of wall time = 91.907068 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... +Test 039 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2110,12 +2242,15 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_rrfs_v1beta PASS +The total amount of wall time = 107.837113 + +Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_prod -Checking test 040 fv3_ccpp_gfs_v16 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_prod +Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2190,12 +2325,15 @@ Checking test 040 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v16 PASS +The total amount of wall time = 131.379843 + +Test 041 fv3_ccpp_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_restart_prod -Checking test 041 fv3_ccpp_gfs_v16_restart results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_restart_prod +Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2240,12 +2378,15 @@ Checking test 041 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16_restart PASS + +The total amount of wall time = 68.766847 + +Test 042 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_stochy_prod -Checking test 042 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_stochy_prod +Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2308,12 +2449,15 @@ Checking test 042 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16_stochy PASS + +The total amount of wall time = 64.512770 + +Test 043 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,12 +2520,15 @@ Checking test 043 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16_RRTMGP PASS +The total amount of wall time = 220.814664 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +Test 044 fv3_ccpp_gfs_v16_RRTMGP PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2438,12 +2585,86 @@ Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +The total amount of wall time = 930.889339 + +Test 045 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gocart_clm_prod -Checking test 045 fv3_ccpp_gocart_clm results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 473.296524 + +Test 046 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gocart_clm_prod +Checking test 047 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2486,12 +2707,15 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gocart_clm PASS + +The total amount of wall time = 57.904422 + +Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_flake_prod -Checking test 046 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_flake_prod +Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2554,12 +2778,15 @@ Checking test 046 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_flake PASS +The total amount of wall time = 112.350998 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Test 048 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2622,12 +2849,15 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 195.980362 + +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2640,12 +2870,15 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 340.106487 + +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2702,12 +2935,15 @@ Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_ugwpv1 PASS + +The total amount of wall time = 216.277636 + +Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2764,12 +3000,15 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + +The total amount of wall time = 218.815280 + +Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2832,12 +3071,15 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v15p2_debug PASS +The total amount of wall time = 245.075230 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_debug_prod -Checking test 052 fv3_ccpp_gfs_v16_debug results .... +Test 053 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2900,12 +3142,15 @@ Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_debug PASS +The total amount of wall time = 189.406938 + +Test 054 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2968,12 +3213,15 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +The total amount of wall time = 386.295980 + +Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3036,23 +3284,29 @@ Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + +The total amount of wall time = 392.440028 + +Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_regional_control_debug_prod -Checking test 055 fv3_ccpp_regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_regional_control_debug_prod +Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 055 fv3_ccpp_regional_control_debug PASS + +The total amount of wall time = 366.831849 + +Test 057 fv3_ccpp_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_control_debug_prod -Checking test 056 fv3_ccpp_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_control_debug_prod +Checking test 058 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3077,12 +3331,15 @@ Checking test 056 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 056 fv3_ccpp_control_debug PASS +The total amount of wall time = 146.508217 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_stretched_nest_debug_prod -Checking test 057 fv3_ccpp_stretched_nest_debug results .... +Test 058 fv3_ccpp_control_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_stretched_nest_debug_prod +Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3097,12 +3354,15 @@ Checking test 057 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 057 fv3_ccpp_stretched_nest_debug PASS + +The total amount of wall time = 433.334427 + +Test 059 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_debug_prod -Checking test 058 fv3_ccpp_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gsd_debug_prod +Checking test 060 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3165,12 +3425,15 @@ Checking test 058 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gsd_debug PASS +The total amount of wall time = 217.347536 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... +Test 060 fv3_ccpp_gsd_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3233,12 +3496,15 @@ Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gsd_diag3d_debug PASS +The total amount of wall time = 263.045850 + +Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_debug_prod -Checking test 060 fv3_ccpp_thompson_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_debug_prod +Checking test 062 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3301,12 +3567,15 @@ Checking test 060 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_thompson_debug PASS +The total amount of wall time = 360.692633 + +Test 062 fv3_ccpp_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3369,12 +3638,15 @@ Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_thompson_no_aero_debug PASS + +The total amount of wall time = 347.414141 + +Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3437,12 +3709,15 @@ Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_rrfs_v1beta_debug PASS + +The total amount of wall time = 209.642159 + +Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3505,12 +3780,15 @@ Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 223.759105 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3523,12 +3801,15 @@ Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 398.279909 + +Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3585,12 +3866,15 @@ Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS +The total amount of wall time = 602.635373 + +Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_prod -Checking test 066 cpld_control results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_prod +Checking test 068 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3638,12 +3922,15 @@ Checking test 066 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 066 cpld_control PASS +The total amount of wall time = 98.377069 + +Test 068 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_prod -Checking test 067 cpld_restart results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_prod +Checking test 069 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3691,12 +3978,15 @@ Checking test 067 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 067 cpld_restart PASS +The total amount of wall time = 54.551793 + +Test 069 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_prod -Checking test 068 cpld_controlfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_prod +Checking test 070 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3744,12 +4034,15 @@ Checking test 068 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 068 cpld_controlfrac PASS + +The total amount of wall time = 97.847198 + +Test 070 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_prod -Checking test 069 cpld_restartfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_prod +Checking test 071 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3797,12 +4090,15 @@ Checking test 069 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 069 cpld_restartfrac PASS + +The total amount of wall time = 54.553696 + +Test 071 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_2threads_prod -Checking test 070 cpld_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_2threads_prod +Checking test 072 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3850,12 +4146,15 @@ Checking test 070 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_2threads PASS +The total amount of wall time = 258.589961 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_decomp_prod -Checking test 071 cpld_decomp results .... +Test 072 cpld_2threads PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_decomp_prod +Checking test 073 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3903,12 +4202,15 @@ Checking test 071 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_decomp PASS +The total amount of wall time = 97.809631 + +Test 073 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_satmedmf_prod -Checking test 072 cpld_satmedmf results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_satmedmf_prod +Checking test 074 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3956,12 +4258,15 @@ Checking test 072 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_satmedmf PASS +The total amount of wall time = 97.610598 + +Test 074 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_ca_prod -Checking test 073 cpld_ca results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_ca_prod +Checking test 075 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4009,12 +4314,15 @@ Checking test 073 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_ca PASS + +The total amount of wall time = 97.401858 + +Test 075 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c192_prod -Checking test 074 cpld_control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_c192_prod +Checking test 076 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4062,12 +4370,15 @@ Checking test 074 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 074 cpld_control_c192 PASS + +The total amount of wall time = 409.284226 + +Test 076 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c192_prod -Checking test 075 cpld_restart_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_c192_prod +Checking test 077 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4115,12 +4426,15 @@ Checking test 075 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 075 cpld_restart_c192 PASS +The total amount of wall time = 294.268034 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c192_prod -Checking test 076 cpld_controlfrac_c192 results .... +Test 077 cpld_restart_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_c192_prod +Checking test 078 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4168,12 +4482,15 @@ Checking test 076 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 076 cpld_controlfrac_c192 PASS + +The total amount of wall time = 402.603821 + +Test 078 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c192_prod -Checking test 077 cpld_restartfrac_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_c192_prod +Checking test 079 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4221,12 +4538,15 @@ Checking test 077 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 077 cpld_restartfrac_c192 PASS +The total amount of wall time = 291.241116 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_c384_prod -Checking test 078 cpld_control_c384 results .... +Test 079 cpld_restartfrac_c192 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_c384_prod +Checking test 080 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4277,12 +4597,15 @@ Checking test 078 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_control_c384 PASS +The total amount of wall time = 1603.600871 + +Test 080 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_c384_prod -Checking test 079 cpld_restart_c384 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_c384_prod +Checking test 081 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4333,12 +4656,15 @@ Checking test 079 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_restart_c384 PASS +The total amount of wall time = 787.647056 + +Test 081 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_controlfrac_c384_prod -Checking test 080 cpld_controlfrac_c384 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_controlfrac_c384_prod +Checking test 082 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4389,12 +4715,15 @@ Checking test 080 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_controlfrac_c384 PASS + +The total amount of wall time = 1593.509229 + +Test 082 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restartfrac_c384_prod -Checking test 081 cpld_restartfrac_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restartfrac_c384_prod +Checking test 083 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4445,12 +4774,15 @@ Checking test 081 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 081 cpld_restartfrac_c384 PASS + +The total amount of wall time = 782.643788 + +Test 083 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_prod -Checking test 082 cpld_bmark results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmark_prod +Checking test 084 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4501,12 +4833,15 @@ Checking test 082 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 082 cpld_bmark PASS +The total amount of wall time = 912.535304 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmark_prod -Checking test 083 cpld_restart_bmark results .... +Test 084 cpld_bmark PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmark_prod +Checking test 085 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4557,12 +4892,15 @@ Checking test 083 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 083 cpld_restart_bmark PASS +The total amount of wall time = 496.944038 + +Test 085 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_prod -Checking test 084 cpld_bmarkfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_prod +Checking test 086 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4613,12 +4951,15 @@ Checking test 084 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 084 cpld_bmarkfrac PASS +The total amount of wall time = 903.261741 + +Test 086 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_prod -Checking test 085 cpld_restart_bmarkfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmarkfrac_prod +Checking test 087 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4669,12 +5010,15 @@ Checking test 085 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 085 cpld_restart_bmarkfrac PASS +The total amount of wall time = 492.256702 + +Test 087 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_v16_prod -Checking test 086 cpld_bmarkfrac_v16 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_v16_prod +Checking test 088 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4725,12 +5069,15 @@ Checking test 086 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 086 cpld_bmarkfrac_v16 PASS +The total amount of wall time = 1637.182420 + +Test 088 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_restart_bmarkfrac_v16_prod -Checking test 087 cpld_restart_bmarkfrac_v16 results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_restart_bmarkfrac_v16_prod +Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -4781,12 +5128,15 @@ Checking test 087 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 087 cpld_restart_bmarkfrac_v16 PASS + +The total amount of wall time = 894.252000 + +Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmark_wave_prod -Checking test 088 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmark_wave_prod +Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4840,12 +5190,15 @@ Checking test 088 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_bmark_wave PASS + +The total amount of wall time = 1568.690744 + +Test 090 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_prod -Checking test 089 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_wave_prod +Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4899,27 +5252,29 @@ Checking test 089 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_bmarkfrac_wave PASS +The total amount of wall time = 1566.777312 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_bmarkfrac_wave_v16_prod -Checking test 090 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK +Test 091 cpld_bmarkfrac_wave PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_bmarkfrac_wave_v16_prod +Checking test 092 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -4956,14 +5311,17 @@ Checking test 090 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 090 cpld_bmarkfrac_wave_v16 PASS + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + +The total amount of wall time = 1043.280968 +Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_control_wave_prod -Checking test 091 cpld_control_wave results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_control_wave_prod +Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5014,12 +5372,15 @@ Checking test 091 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 091 cpld_control_wave PASS +The total amount of wall time = 814.173459 + +Test 093 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debug_prod -Checking test 092 cpld_debug results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_debug_prod +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5067,12 +5428,15 @@ Checking test 092 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 092 cpld_debug PASS +The total amount of wall time = 307.202595 + +Test 094 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/cpld_debugfrac_prod -Checking test 093 cpld_debugfrac results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/cpld_debugfrac_prod +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5120,87 +5484,114 @@ Checking test 093 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 093 cpld_debugfrac PASS + +The total amount of wall time = 305.519940 + +Test 095 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_control_cfsr -Checking test 094 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_control_cfsr +Checking test 096 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_control_cfsr PASS + +The total amount of wall time = 102.254750 + +Test 096 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_restart_cfsr -Checking test 095 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_restart_cfsr +Checking test 097 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_restart_cfsr PASS +The total amount of wall time = 64.874934 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_control_gefs -Checking test 096 datm_control_gefs results .... +Test 097 datm_restart_cfsr PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_control_gefs +Checking test 098 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_control_gefs PASS +The total amount of wall time = 92.312934 + +Test 098 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_bulk_cfsr -Checking test 097 datm_bulk_cfsr results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_bulk_cfsr +Checking test 099 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_bulk_cfsr PASS +The total amount of wall time = 98.579826 + +Test 099 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_bulk_gefs -Checking test 098 datm_bulk_gefs results .... + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_bulk_gefs +Checking test 100 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_bulk_gefs PASS + +The total amount of wall time = 96.718155 + +Test 100 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_mx025_cfsr -Checking test 099 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_mx025_cfsr +Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 099 datm_mx025_cfsr PASS + +The total amount of wall time = 395.791816 + +Test 101 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_mx025_gefs -Checking test 100 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_mx025_gefs +Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_mx025_gefs PASS +The total amount of wall time = 373.193171 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_20008/datm_debug_cfsr -Checking test 101 datm_debug_cfsr results .... +Test 102 datm_mx025_gefs PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_67492/datm_debug_cfsr +Checking test 103 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 101 datm_debug_cfsr PASS + +The total amount of wall time = 285.512419 + +Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 14:49:52 MST 2021 -Elapsed time: 01h:19m:48s. Have a nice day! +Mon Mar 15 16:50:40 MDT 2021 +Elapsed time: 01h:36m:59s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 368d969a3..33e7e7857 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 18:30:56 EST 2021 +Mon Mar 15 11:33:54 EDT 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 46.202716 + Test 001 fv3_ccpp_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_decomp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 48.422483 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_2threads_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 63.621933 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 25.530793 + Test 004 fv3_ccpp_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_read_inc_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 45.608474 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 103.548563 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 41.781802 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 119.304346 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 42.524630 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 40.850460 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 112.714340 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stochy_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.386574 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_ca_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 34.888770 + Test 013 fv3_ccpp_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lndp_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 53.942397 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_iau_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 45.545194 + Test 015 fv3_ccpp_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_lheatstrg_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 46.328518 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_multigases_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 86.788859 + Test 017 fv3_ccpp_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_32bit_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1071,11 +1122,14 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 42.716204 + Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1127,11 +1181,14 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 310.401709 + Test 019 fv3_ccpp_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1194,54 +1251,87 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK + +The total amount of wall time = 337.151113 + Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +The total amount of wall time = 673.135357 + Test 021 fv3_ccpp_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_restart_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + +The total amount of wall time = 372.152868 + Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_prod +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 696.496583 + Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_hafs_prod +Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 690.496928 + +Test 024 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK + +The total amount of wall time = 696.943945 + +Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1374,15 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmp PASS +The total amount of wall time = 50.896308 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... +Test 026 fv3_ccpp_gfdlmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1332,12 +1425,15 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_gwd PASS + +The total amount of wall time = 49.231900 + +Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1380,12 +1476,15 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_noahmp PASS +The total amount of wall time = 48.333800 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +Test 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1527,15 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_csawmg PASS + +The total amount of wall time = 126.509770 + +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1578,15 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmf PASS +The total amount of wall time = 51.905065 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +Test 030 fv3_ccpp_satmedmf PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1629,15 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmfq PASS + +The total amount of wall time = 53.400283 + +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1572,12 +1680,15 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmp_32bit PASS +The total amount of wall time = 59.138256 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... +Test 032 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1624,12 +1735,15 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS +The total amount of wall time = 80.114644 + +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1792,15 @@ Checking test 033 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_cpt PASS +The total amount of wall time = 308.652566 + +Test 034 fv3_ccpp_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ Checking test 034 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_gsd PASS +The total amount of wall time = 199.917140 + +Test 035 fv3_ccpp_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rap_prod -Checking test 035 fv3_ccpp_rap results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rap_prod +Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1958,15 @@ Checking test 035 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_rap PASS +The total amount of wall time = 97.420971 + +Test 036 fv3_ccpp_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_hrrr_prod -Checking test 036 fv3_ccpp_hrrr results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_hrrr_prod +Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_hrrr PASS + +The total amount of wall time = 100.507409 + +Test 037 fv3_ccpp_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1974,12 +2100,15 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson PASS + +The total amount of wall time = 100.859710 + +Test 038 fv3_ccpp_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +2171,15 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_thompson_no_aero PASS +The total amount of wall time = 89.024713 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... +Test 039 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2110,12 +2242,15 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_rrfs_v1beta PASS + +The total amount of wall time = 107.226849 + +Test 040 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_prod -Checking test 040 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_prod +Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2178,12 +2313,15 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v15p2 PASS +The total amount of wall time = 116.561811 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_prod -Checking test 041 fv3_ccpp_gfs_v16 results .... +Test 041 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_prod +Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2258,12 +2396,15 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16 PASS +The total amount of wall time = 123.109903 + +Test 042 fv3_ccpp_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_restart_prod -Checking test 042 fv3_ccpp_gfs_v16_restart results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_restart_prod +Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2308,12 +2449,15 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16_restart PASS +The total amount of wall time = 70.816141 + +Test 043 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16_stochy results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_stochy_prod +Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,12 +2520,15 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16_stochy PASS +The total amount of wall time = 57.624361 + +Test 044 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2444,12 +2591,15 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS +The total amount of wall time = 196.279333 + +Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2512,12 +2662,15 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS +The total amount of wall time = 198.279861 + +Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2574,12 +2727,86 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +The total amount of wall time = 724.420639 + +Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmg_prod -Checking test 047 fv3_ccpp_gfsv16_csawmg results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 289.246314 + +Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_csawmg_prod +Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2622,12 +2849,15 @@ Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfsv16_csawmg PASS + +The total amount of wall time = 160.717652 + +Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2670,12 +2900,15 @@ Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfsv16_csawmgt PASS +The total amount of wall time = 135.358067 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... +Test 050 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gocart_clm_prod +Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2718,12 +2951,15 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gocart_clm PASS + +The total amount of wall time = 56.265930 + +Test 051 fv3_ccpp_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_flake_prod -Checking test 050 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2786,12 +3022,15 @@ Checking test 050 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_flake PASS +The total amount of wall time = 150.911054 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Test 052 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2854,12 +3093,15 @@ Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 165.912999 + +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2872,12 +3114,15 @@ Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 330.719092 + +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2934,12 +3179,15 @@ Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS +The total amount of wall time = 188.806294 + +Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2996,12 +3244,15 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +The total amount of wall time = 187.875190 + +Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3064,12 +3315,15 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v15p2_debug PASS +The total amount of wall time = 239.583893 + +Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3132,12 +3386,15 @@ Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfs_v16_debug PASS +The total amount of wall time = 175.667525 + +Test 058 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3200,12 +3457,15 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +The total amount of wall time = 380.015984 + +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3268,23 +3528,29 @@ Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +The total amount of wall time = 382.399233 + +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_regional_control_debug_prod -Checking test 059 fv3_ccpp_regional_control_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_regional_control_debug_prod +Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 059 fv3_ccpp_regional_control_debug PASS + +The total amount of wall time = 368.997322 + +Test 061 fv3_ccpp_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_control_debug_prod -Checking test 060 fv3_ccpp_control_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_control_debug_prod +Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3309,12 +3575,15 @@ Checking test 060 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 060 fv3_ccpp_control_debug PASS + +The total amount of wall time = 129.907206 + +Test 062 fv3_ccpp_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_stretched_nest_debug_prod -Checking test 061 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_stretched_nest_debug_prod +Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3329,12 +3598,15 @@ Checking test 061 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 061 fv3_ccpp_stretched_nest_debug PASS +The total amount of wall time = 436.163004 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... +Test 063 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3669,15 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS + +The total amount of wall time = 195.328983 + +Test 064 fv3_ccpp_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3740,15 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS +The total amount of wall time = 225.306297 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... +Test 065 fv3_ccpp_gsd_diag3d_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3811,15 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS + +The total amount of wall time = 341.836603 + +Test 066 fv3_ccpp_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3601,12 +3882,15 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS +The total amount of wall time = 330.821297 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... +Test 067 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3669,12 +3953,15 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS + +The total amount of wall time = 192.188307 + +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3737,12 +4024,15 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 216.395169 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3755,12 +4045,15 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 380.092955 + +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3817,12 +4110,15 @@ Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS +The total amount of wall time = 579.772698 + +Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_prod -Checking test 070 cpld_control results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_prod +Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3870,12 +4166,15 @@ Checking test 070 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 070 cpld_control PASS +The total amount of wall time = 101.285119 + +Test 072 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_prod -Checking test 071 cpld_restart results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_prod +Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3923,12 +4222,15 @@ Checking test 071 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 071 cpld_restart PASS +The total amount of wall time = 52.005528 + +Test 073 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_prod -Checking test 072 cpld_controlfrac results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_prod +Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3976,12 +4278,15 @@ Checking test 072 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_controlfrac PASS +The total amount of wall time = 106.159695 + +Test 074 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_prod -Checking test 073 cpld_restartfrac results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_prod +Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4029,12 +4334,15 @@ Checking test 073 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_restartfrac PASS +The total amount of wall time = 49.894653 + +Test 075 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_2threads_prod -Checking test 074 cpld_2threads results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_2threads_prod +Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4082,12 +4390,15 @@ Checking test 074 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_2threads PASS +The total amount of wall time = 124.166037 + +Test 076 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_decomp_prod -Checking test 075 cpld_decomp results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_decomp_prod +Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4135,12 +4446,15 @@ Checking test 075 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_decomp PASS +The total amount of wall time = 122.193962 + +Test 077 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_satmedmf_prod -Checking test 076 cpld_satmedmf results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_satmedmf_prod +Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4188,12 +4502,15 @@ Checking test 076 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_satmedmf PASS + +The total amount of wall time = 96.819726 + +Test 078 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_ca_prod -Checking test 077 cpld_ca results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_ca_prod +Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4241,12 +4558,15 @@ Checking test 077 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_ca PASS + +The total amount of wall time = 95.574276 + +Test 079 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c192_prod -Checking test 078 cpld_control_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_c192_prod +Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4294,12 +4614,15 @@ Checking test 078 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 078 cpld_control_c192 PASS +The total amount of wall time = 417.422353 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c192_prod -Checking test 079 cpld_restart_c192 results .... +Test 080 cpld_control_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_c192_prod +Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4347,12 +4670,15 @@ Checking test 079 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 079 cpld_restart_c192 PASS + +The total amount of wall time = 284.592658 + +Test 081 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c192_prod -Checking test 080 cpld_controlfrac_c192 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_c192_prod +Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4400,12 +4726,15 @@ Checking test 080 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_controlfrac_c192 PASS +The total amount of wall time = 414.885245 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c192_prod -Checking test 081 cpld_restartfrac_c192 results .... +Test 082 cpld_controlfrac_c192 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_c192_prod +Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4453,12 +4782,15 @@ Checking test 081 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 081 cpld_restartfrac_c192 PASS + +The total amount of wall time = 284.826380 + +Test 083 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_control_c384_prod -Checking test 082 cpld_control_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_control_c384_prod +Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4509,12 +4841,15 @@ Checking test 082 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 082 cpld_control_c384 PASS +The total amount of wall time = 1573.722499 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_c384_prod -Checking test 083 cpld_restart_c384 results .... +Test 084 cpld_control_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_c384_prod +Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4565,12 +4900,15 @@ Checking test 083 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 083 cpld_restart_c384 PASS + +The total amount of wall time = 787.501707 + +Test 085 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_controlfrac_c384_prod -Checking test 084 cpld_controlfrac_c384 results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_controlfrac_c384_prod +Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4621,12 +4959,15 @@ Checking test 084 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_controlfrac_c384 PASS +The total amount of wall time = 1564.939017 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restartfrac_c384_prod -Checking test 085 cpld_restartfrac_c384 results .... +Test 086 cpld_controlfrac_c384 PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restartfrac_c384_prod +Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4677,12 +5018,15 @@ Checking test 085 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 085 cpld_restartfrac_c384 PASS +The total amount of wall time = 821.304281 + +Test 087 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmark_prod -Checking test 086 cpld_bmark results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_bmark_prod +Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4733,12 +5077,15 @@ Checking test 086 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 086 cpld_bmark PASS +The total amount of wall time = 898.267012 + +Test 088 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmark_prod -Checking test 087 cpld_restart_bmark results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_bmark_prod +Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4789,12 +5136,15 @@ Checking test 087 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 087 cpld_restart_bmark PASS +The total amount of wall time = 493.790992 + +Test 089 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_bmarkfrac_prod -Checking test 088 cpld_bmarkfrac results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_bmarkfrac_prod +Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4845,12 +5195,15 @@ Checking test 088 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_bmarkfrac PASS +The total amount of wall time = 870.568108 + +Test 090 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_restart_bmarkfrac_prod -Checking test 089 cpld_restart_bmarkfrac results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_restart_bmarkfrac_prod +Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4901,12 +5254,15 @@ Checking test 089 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_restart_bmarkfrac PASS +The total amount of wall time = 459.592415 + +Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debug_prod -Checking test 090 cpld_debug results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_debug_prod +Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -4954,12 +5310,15 @@ Checking test 090 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 090 cpld_debug PASS +The total amount of wall time = 268.650325 + +Test 092 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/cpld_debugfrac_prod -Checking test 091 cpld_debugfrac results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/cpld_debugfrac_prod +Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5007,87 +5366,99 @@ Checking test 091 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 091 cpld_debugfrac PASS +The total amount of wall time = 266.272874 + +Test 093 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_cfsr -Checking test 092 datm_control_cfsr results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_control_cfsr +Checking test 094 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 092 datm_control_cfsr PASS +The total amount of wall time = 103.055567 + +Test 094 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_restart_cfsr -Checking test 093 datm_restart_cfsr results .... + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_restart_cfsr +Checking test 095 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 093 datm_restart_cfsr PASS + +The total amount of wall time = 59.947350 + +Test 095 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_control_gefs -Checking test 094 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_control_gefs +Checking test 096 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 094 datm_control_gefs PASS + +The total amount of wall time = 94.846247 + +Test 096 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_cfsr -Checking test 095 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_bulk_cfsr +Checking test 097 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 095 datm_bulk_cfsr PASS +The total amount of wall time = 98.839096 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_bulk_gefs -Checking test 096 datm_bulk_gefs results .... +Test 097 datm_bulk_cfsr PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_bulk_gefs +Checking test 098 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 096 datm_bulk_gefs PASS +The total amount of wall time = 95.686765 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_cfsr -Checking test 097 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 097 datm_mx025_cfsr PASS +Test 098 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_mx025_gefs -Checking test 098 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_mx025_gefs +Checking test 099 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 098 datm_mx025_gefs PASS +The total amount of wall time = 403.741743 -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_12314/datm_debug_cfsr -Checking test 099 datm_debug_cfsr results .... +Test 099 datm_mx025_gefs PASS + + +baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_36347/datm_debug_cfsr +Checking test 100 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 099 datm_debug_cfsr PASS + +The total amount of wall time = 228.299889 + +Test 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 20:13:13 EST 2021 -Elapsed time: 01h:42m:18s. Have a nice day! +Mon Mar 15 13:04:15 EDT 2021 +Elapsed time: 01h:30m:22s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 50d1df6ef..231e963d1 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Feb 17 20:45:37 UTC 2021 +Mon Mar 15 15:32:14 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfdlmp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -47,11 +47,14 @@ Checking test 001 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 233.970407 + Test 001 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -115,11 +118,14 @@ Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 586.511327 + Test 002 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_prod Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -195,11 +201,14 @@ Checking test 003 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 597.561812 + Test 003 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_restart_prod Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -245,11 +254,14 @@ Checking test 004 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 291.886595 + Test 004 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_stochy_prod Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,11 +325,14 @@ Checking test 005 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 370.489472 + Test 005 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_flake_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_flake_prod Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -381,11 +396,14 @@ Checking test 006 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 579.985304 + Test 006 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_RRTMGP_prod Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -449,11 +467,14 @@ Checking test 007 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 685.915855 + Test 007 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_RRTMGP_prod Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -517,11 +538,14 @@ Checking test 008 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 700.908666 + Test 008 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gsd_prod Checking test 009 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +633,14 @@ Checking test 009 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 810.317421 + Test 009 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_prod Checking test 010 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +704,14 @@ Checking test 010 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 390.749742 + Test 010 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_no_aero_prod Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +775,14 @@ Checking test 011 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 380.471711 + Test 011 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_rrfs_v1beta_prod Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +846,14 @@ Checking test 012 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 412.763619 + Test 012 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_HAFS_v0_hwrf_thompson_prod Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +917,14 @@ Checking test 013 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 607.292609 + Test 013 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -899,11 +938,14 @@ Checking test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK + + 0: The total amount of wall time = 449.080236 + Test 014 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_prod Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -961,11 +1003,14 @@ Checking test 015 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 907.983095 + Test 015 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1023,11 +1068,14 @@ Checking test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 918.404036 + Test 016 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_control_debug_prod Checking test 017 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1053,11 +1101,14 @@ Checking test 017 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK + + 0: The total amount of wall time = 84.837095 + Test 017 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_debug_prod Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1121,11 +1172,14 @@ Checking test 018 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 271.075533 + Test 018 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_debug_prod Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1189,11 +1243,14 @@ Checking test 019 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 129.496280 + Test 019 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1257,11 +1314,14 @@ Checking test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 318.714050 + Test 020 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfs_v16_RRTMGP_debug_prod Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1325,11 +1385,14 @@ Checking test 021 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 320.059481 + Test 021 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_multigases_prod Checking test 022 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1399,22 +1462,28 @@ Checking test 022 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 423.407471 + Test 022 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_regional_control_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_regional_control_debug_prod Checking test 023 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + + 0: The total amount of wall time = 170.604005 + Test 023 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_rrfs_v1beta_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,11 +1547,14 @@ Checking test 024 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 117.288385 + Test 024 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gsd_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gsd_debug_prod Checking test 025 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,11 +1618,14 @@ Checking test 025 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 121.701585 + Test 025 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_debug_prod Checking test 026 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1614,11 +1689,14 @@ Checking test 026 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 200.074667 + Test 026 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_thompson_no_aero_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_thompson_no_aero_debug_prod Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,11 +1760,14 @@ Checking test 027 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 191.013240 + Test 027 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,11 +1831,14 @@ Checking test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 134.187735 + Test 028 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1768,11 +1852,14 @@ Checking test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK + + 0: The total amount of wall time = 221.463238 + Test 029 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_236046/fv3_ccpp_gfsv16_ugwpv1_debug_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/GNU/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_267572/fv3_ccpp_gfsv16_ugwpv1_debug_prod Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1830,9 +1917,12 @@ Checking test 030 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 386.492332 + Test 030 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Feb 17 21:14:47 UTC 2021 -Elapsed time: 00h:29m:11s. Have a nice day! +Mon Mar 15 16:09:07 UTC 2021 +Elapsed time: 00h:36m:54s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5cdfec543..4c261b300 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Thu Feb 18 02:57:16 UTC 2021 +Mon Mar 15 15:46:28 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 39.820948 + Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_decomp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 41.696005 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_2threads_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 41.704694 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 18.894438 + Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_read_inc_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 36.373933 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 118.985372 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 38.453367 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -429,7 +450,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 47.808920 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 38.531347 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 37.806432 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 95.943929 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stochy_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 41.394106 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_ca_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 27.442370 + Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lndp_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.327471 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_iau_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 36.161476 + Test 015 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_lheatstrg_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 36.584574 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -978,11 +1026,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + + 0: The total amount of wall time = 650.226553 + Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,11 +1078,14 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + + 0: The total amount of wall time = 794.057355 + Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1076,11 +1130,14 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.glo_10m .........OK Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK + + 0: The total amount of wall time = 670.292633 + Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_multigases_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1150,11 +1207,14 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 75.720520 + Test 020 fv3_ccpp_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_32bit_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,11 +1278,14 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 36.119760 + Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1274,11 +1337,14 @@ Checking test 022 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 218.355337 + Test 022 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1341,54 +1407,87 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK + + 0: The total amount of wall time = 241.797501 + Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + + 0: The total amount of wall time = 538.287428 + Test 024 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_restart_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + + 0: The total amount of wall time = 299.440706 + Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_prod +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + + 0: The total amount of wall time = 574.471287 + Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_hafs_prod +Checking test 027 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + + 0: The total amount of wall time = 569.850052 + +Test 027 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + 0: The total amount of wall time = 574.410244 + +Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmp_prod +Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1431,12 +1530,15 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmp PASS + 0: The total amount of wall time = 42.512034 + +Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1479,12 +1581,15 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_gwd PASS + + 0: The total amount of wall time = 42.662451 + +Test 030 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1527,12 +1632,15 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmprad_noahmp PASS + + 0: The total amount of wall time = 42.493438 + +Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_csawmg_prod +Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1575,12 +1683,15 @@ Checking test 031 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_csawmg PASS + 0: The total amount of wall time = 108.002941 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... +Test 032 fv3_ccpp_csawmg PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_satmedmf_prod +Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1623,12 +1734,15 @@ Checking test 032 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmf PASS + 0: The total amount of wall time = 45.081347 + +Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_satmedmfq_prod +Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1671,12 +1785,15 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_satmedmfq PASS + 0: The total amount of wall time = 44.823135 + +Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmp_32bit_prod +Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1719,12 +1836,15 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmp_32bit PASS + + 0: The total amount of wall time = 36.315722 + +Test 035 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1771,12 +1891,15 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS + + 0: The total amount of wall time = 74.857665 + +Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_cpt_prod +Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1825,12 +1948,15 @@ Checking test 036 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_cpt PASS + 0: The total amount of wall time = 256.721063 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... +Test 037 fv3_ccpp_cpt PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_prod +Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1917,12 +2043,15 @@ Checking test 037 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_gsd PASS + 0: The total amount of wall time = 176.998657 + +Test 038 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rap_prod -Checking test 038 fv3_ccpp_rap results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rap_prod +Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1985,12 +2114,15 @@ Checking test 038 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_rap PASS + 0: The total amount of wall time = 86.539870 + +Test 039 fv3_ccpp_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_hrrr_prod -Checking test 039 fv3_ccpp_hrrr results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_hrrr_prod +Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2053,12 +2185,15 @@ Checking test 039 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_hrrr PASS + + 0: The total amount of wall time = 94.950462 + +Test 040 fv3_ccpp_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_prod -Checking test 040 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_prod +Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2121,12 +2256,15 @@ Checking test 040 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson PASS + + 0: The total amount of wall time = 83.883970 + +Test 041 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_prod -Checking test 041 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_no_aero_prod +Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2189,12 +2327,15 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_thompson_no_aero PASS + 0: The total amount of wall time = 78.864208 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_prod -Checking test 042 fv3_ccpp_rrfs_v1beta results .... +Test 042 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rrfs_v1beta_prod +Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2257,12 +2398,15 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_rrfs_v1beta PASS + 0: The total amount of wall time = 97.051378 + +Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_prod -Checking test 043 fv3_ccpp_gfs_v15p2 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_prod +Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2325,12 +2469,15 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v15p2 PASS + 0: The total amount of wall time = 92.268968 + +Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_prod -Checking test 044 fv3_ccpp_gfs_v16 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_prod +Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2405,12 +2552,15 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16 PASS + + 0: The total amount of wall time = 103.291199 + +Test 045 fv3_ccpp_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_restart_prod -Checking test 045 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_restart_prod +Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2455,12 +2605,15 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_restart PASS + + 0: The total amount of wall time = 52.978843 + +Test 046 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_stochy_prod -Checking test 046 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_stochy_prod +Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2523,12 +2676,15 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_stochy PASS + 0: The total amount of wall time = 47.704682 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... +Test 047 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2591,12 +2747,15 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS + 0: The total amount of wall time = 154.916247 + +Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2659,12 +2818,15 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS + 0: The total amount of wall time = 163.209395 + +Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2721,12 +2883,86 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + 0: The total amount of wall time = 635.194443 + +Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 169.926189 + +Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_csawmg_prod +Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2769,12 +3005,15 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmg PASS + 0: The total amount of wall time = 116.387435 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... +Test 052 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2817,12 +3056,15 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_csawmgt PASS + 0: The total amount of wall time = 114.610591 + +Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gocart_clm_prod +Checking test 054 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2865,12 +3107,15 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gocart_clm PASS + 0: The total amount of wall time = 46.833943 + +Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_flake_prod -Checking test 053 fv3_ccpp_gfs_v16_flake results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2933,12 +3178,15 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_flake PASS + + 0: The total amount of wall time = 94.028350 + +Test 055 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3001,12 +3249,15 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + 0: The total amount of wall time = 141.391373 + +Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3019,12 +3270,15 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + 0: The total amount of wall time = 280.893582 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... +Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3081,12 +3335,15 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS + 0: The total amount of wall time = 163.002475 + +Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3143,12 +3400,15 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + 0: The total amount of wall time = 162.308474 + +Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3211,12 +3471,15 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS + + 0: The total amount of wall time = 226.913909 + +Test 060 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3279,12 +3542,15 @@ Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16_debug PASS + + 0: The total amount of wall time = 173.863329 + +Test 061 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3347,12 +3613,15 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + 0: The total amount of wall time = 345.255492 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3415,23 +3684,29 @@ Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + 0: The total amount of wall time = 356.023037 + +Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_regional_control_debug_prod -Checking test 062 fv3_ccpp_regional_control_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_regional_control_debug_prod +Checking test 064 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 062 fv3_ccpp_regional_control_debug PASS + 0: The total amount of wall time = 346.152073 + +Test 064 fv3_ccpp_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_control_debug_prod -Checking test 063 fv3_ccpp_control_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_control_debug_prod +Checking test 065 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3456,12 +3731,15 @@ Checking test 063 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 063 fv3_ccpp_control_debug PASS + + 0: The total amount of wall time = 131.753745 + +Test 065 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_stretched_nest_debug_prod -Checking test 064 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_stretched_nest_debug_prod +Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3476,12 +3754,15 @@ Checking test 064 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 064 fv3_ccpp_stretched_nest_debug PASS + + 0: The total amount of wall time = 353.092963 + +Test 066 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_debug_prod -Checking test 065 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_debug_prod +Checking test 067 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3544,12 +3825,15 @@ Checking test 065 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_gsd_debug PASS + 0: The total amount of wall time = 202.644216 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... +Test 067 fv3_ccpp_gsd_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3612,12 +3896,15 @@ Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_gsd_diag3d_debug PASS + 0: The total amount of wall time = 262.831129 + +Test 068 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_debug_prod -Checking test 067 fv3_ccpp_thompson_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_debug_prod +Checking test 069 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3680,12 +3967,15 @@ Checking test 067 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 067 fv3_ccpp_thompson_debug PASS + 0: The total amount of wall time = 330.254832 + +Test 069 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3748,12 +4038,15 @@ Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 068 fv3_ccpp_thompson_no_aero_debug PASS + + 0: The total amount of wall time = 313.972837 + +Test 070 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3816,12 +4109,15 @@ Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 069 fv3_ccpp_rrfs_v1beta_debug PASS + + 0: The total amount of wall time = 194.159450 + +Test 071 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3884,12 +4180,15 @@ Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + 0: The total amount of wall time = 204.837334 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3902,12 +4201,15 @@ Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + 0: The total amount of wall time = 384.302992 + +Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3964,12 +4266,15 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS + 0: The total amount of wall time = 549.493664 + +Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_prod -Checking test 073 cpld_control results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_prod +Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4017,12 +4322,15 @@ Checking test 073 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_control PASS + + 0: The total amount of wall time = 90.101533 + +Test 075 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_prod -Checking test 074 cpld_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_prod +Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4070,12 +4378,15 @@ Checking test 074 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_restart PASS + + 0: The total amount of wall time = 55.423159 + +Test 076 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_prod -Checking test 075 cpld_controlfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_prod +Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4123,12 +4434,15 @@ Checking test 075 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_controlfrac PASS + 0: The total amount of wall time = 90.707759 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_prod -Checking test 076 cpld_restartfrac results .... +Test 077 cpld_controlfrac PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_prod +Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4176,12 +4490,15 @@ Checking test 076 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_restartfrac PASS + 0: The total amount of wall time = 55.579114 + +Test 078 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_2threads_prod -Checking test 077 cpld_2threads results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_2threads_prod +Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4229,12 +4546,15 @@ Checking test 077 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_2threads PASS + 0: The total amount of wall time = 110.233780 + +Test 079 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_decomp_prod -Checking test 078 cpld_decomp results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_decomp_prod +Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4282,12 +4602,15 @@ Checking test 078 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_decomp PASS + + 0: The total amount of wall time = 87.807401 + +Test 080 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_satmedmf_prod -Checking test 079 cpld_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_satmedmf_prod +Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4335,12 +4658,15 @@ Checking test 079 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_satmedmf PASS + + 0: The total amount of wall time = 86.781482 + +Test 081 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_ca_prod -Checking test 080 cpld_ca results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_ca_prod +Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4388,12 +4714,15 @@ Checking test 080 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_ca PASS + 0: The total amount of wall time = 88.532365 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c192_prod -Checking test 081 cpld_control_c192 results .... +Test 082 cpld_ca PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_c192_prod +Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4441,12 +4770,15 @@ Checking test 081 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 081 cpld_control_c192 PASS + 0: The total amount of wall time = 375.899109 + +Test 083 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c192_prod -Checking test 082 cpld_restart_c192 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_c192_prod +Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4494,12 +4826,15 @@ Checking test 082 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 082 cpld_restart_c192 PASS + 0: The total amount of wall time = 271.862402 + +Test 084 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c192_prod -Checking test 083 cpld_controlfrac_c192 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_c192_prod +Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4547,12 +4882,15 @@ Checking test 083 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 083 cpld_controlfrac_c192 PASS + + 0: The total amount of wall time = 373.801676 + +Test 085 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c192_prod -Checking test 084 cpld_restartfrac_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_c192_prod +Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4600,12 +4938,15 @@ Checking test 084 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 084 cpld_restartfrac_c192 PASS + + 0: The total amount of wall time = 271.784243 + +Test 086 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_c384_prod -Checking test 085 cpld_control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_c384_prod +Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4656,12 +4997,15 @@ Checking test 085 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 085 cpld_control_c384 PASS + 0: The total amount of wall time = 1319.686156 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_c384_prod -Checking test 086 cpld_restart_c384 results .... +Test 087 cpld_control_c384 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_c384_prod +Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4712,12 +5056,15 @@ Checking test 086 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 086 cpld_restart_c384 PASS + 0: The total amount of wall time = 695.474549 + +Test 088 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_controlfrac_c384_prod -Checking test 087 cpld_controlfrac_c384 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_controlfrac_c384_prod +Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4768,12 +5115,15 @@ Checking test 087 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 087 cpld_controlfrac_c384 PASS + 0: The total amount of wall time = 1320.686769 + +Test 089 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restartfrac_c384_prod +Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4824,12 +5174,15 @@ Checking test 088 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 088 cpld_restartfrac_c384 PASS + + 0: The total amount of wall time = 688.747277 + +Test 090 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_prod -Checking test 089 cpld_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmark_prod +Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4880,12 +5233,15 @@ Checking test 089 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_bmark PASS + + 0: The total amount of wall time = 819.239022 + +Test 091 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmark_prod -Checking test 090 cpld_restart_bmark results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmark_prod +Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4936,12 +5292,15 @@ Checking test 090 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 090 cpld_restart_bmark PASS + 0: The total amount of wall time = 453.508104 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_prod -Checking test 091 cpld_bmarkfrac results .... +Test 092 cpld_restart_bmark PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_prod +Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4992,12 +5351,15 @@ Checking test 091 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmarkfrac PASS + 0: The total amount of wall time = 818.880256 + +Test 093 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_prod -Checking test 092 cpld_restart_bmarkfrac results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmarkfrac_prod +Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5048,12 +5410,15 @@ Checking test 092 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_restart_bmarkfrac PASS + 0: The total amount of wall time = 440.989959 + +Test 094 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_v16_prod -Checking test 093 cpld_bmarkfrac_v16 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_v16_prod +Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5104,12 +5469,15 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_v16 PASS + + 0: The total amount of wall time = 1323.191829 + +Test 095 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_restart_bmarkfrac_v16_prod -Checking test 094 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_restart_bmarkfrac_v16_prod +Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5160,12 +5528,15 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 094 cpld_restart_bmarkfrac_v16 PASS + + 0: The total amount of wall time = 729.645432 + +Test 096 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmark_wave_prod -Checking test 095 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmark_wave_prod +Checking test 097 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5219,12 +5590,15 @@ Checking test 095 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 095 cpld_bmark_wave PASS + 0: The total amount of wall time = 1366.430816 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_prod -Checking test 096 cpld_bmarkfrac_wave results .... +Test 097 cpld_bmark_wave PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_wave_prod +Checking test 098 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5278,27 +5652,29 @@ Checking test 096 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 096 cpld_bmarkfrac_wave PASS + 0: The total amount of wall time = 1365.825424 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_bmarkfrac_wave_v16_prod -Checking test 097 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK +Test 098 cpld_bmarkfrac_wave PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_bmarkfrac_wave_v16_prod +Checking test 099 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5335,14 +5711,17 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 097 cpld_bmarkfrac_wave_v16 PASS + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + 0: The total amount of wall time = 900.440136 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_control_wave_prod -Checking test 098 cpld_control_wave results .... +Test 099 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_control_wave_prod +Checking test 100 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5393,12 +5772,15 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 098 cpld_control_wave PASS + 0: The total amount of wall time = 788.579555 + +Test 100 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debug_prod -Checking test 099 cpld_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_debug_prod +Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5446,12 +5828,15 @@ Checking test 099 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 099 cpld_debug PASS + 0: The total amount of wall time = 291.535966 + +Test 101 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/cpld_debugfrac_prod -Checking test 100 cpld_debugfrac results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/cpld_debugfrac_prod +Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5499,87 +5884,114 @@ Checking test 100 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 100 cpld_debugfrac PASS + + 0: The total amount of wall time = 290.223750 + +Test 102 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_cfsr -Checking test 101 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_control_cfsr +Checking test 103 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_control_cfsr PASS + + 0: The total amount of wall time = 95.380910 + +Test 103 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_restart_cfsr -Checking test 102 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_restart_cfsr +Checking test 104 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_restart_cfsr PASS + 0: The total amount of wall time = 61.520902 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_control_gefs -Checking test 103 datm_control_gefs results .... +Test 104 datm_restart_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_control_gefs +Checking test 105 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_control_gefs PASS + 0: The total amount of wall time = 87.965986 + +Test 105 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_cfsr -Checking test 104 datm_bulk_cfsr results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_bulk_cfsr +Checking test 106 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 104 datm_bulk_cfsr PASS + 0: The total amount of wall time = 90.934683 + +Test 106 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_bulk_gefs -Checking test 105 datm_bulk_gefs results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_bulk_gefs +Checking test 107 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 105 datm_bulk_gefs PASS + + 0: The total amount of wall time = 88.832563 + +Test 107 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_cfsr -Checking test 106 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_mx025_cfsr +Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 106 datm_mx025_cfsr PASS + + 0: The total amount of wall time = 359.304711 + +Test 108 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_mx025_gefs -Checking test 107 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_mx025_gefs +Checking test 109 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 107 datm_mx025_gefs PASS + 0: The total amount of wall time = 357.808078 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_71644/datm_debug_cfsr -Checking test 108 datm_debug_cfsr results .... +Test 109 datm_mx025_gefs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_53934/datm_debug_cfsr +Checking test 110 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 108 datm_debug_cfsr PASS + + 0: The total amount of wall time = 267.113286 + +Test 110 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 04:38:47 UTC 2021 -Elapsed time: 01h:41m:32s. Have a nice day! +Mon Mar 15 17:16:13 UTC 2021 +Elapsed time: 01h:29m:46s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 178216a8c..d3fabe05c 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Feb 17 22:55:09 GMT 2021 +Mon Mar 15 15:31:15 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 60.812134 + Test 001 fv3_ccpp_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_2threads_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_2threads_prod Checking test 002 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 281.513271 + Test 002 fv3_ccpp_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_restart_prod Checking test 003 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -185,11 +191,14 @@ Checking test 003 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 27.429526 + Test 003 fv3_ccpp_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_read_inc_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_read_inc_prod Checking test 004 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.492872 + Test 004 fv3_ccpp_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -301,11 +313,14 @@ Checking test 005 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 153.693164 + Test 005 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -349,11 +364,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 53.510003 + Test 006 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,11 +415,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 71.922677 + Test 007 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -445,11 +466,14 @@ Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.692752 + Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -493,11 +517,14 @@ Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.411888 + Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -541,11 +568,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 141.282702 + Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stochy_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 58.295106 + Test 011 fv3_ccpp_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_ca_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_ca_prod Checking test 012 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 41.881267 + Test 012 fv3_ccpp_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lndp_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_lndp_prod Checking test 013 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 65.033832 + Test 013 fv3_ccpp_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_iau_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_iau_prod Checking test 014 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.527489 + Test 014 fv3_ccpp_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_lheatstrg_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -861,11 +903,14 @@ Checking test 015 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 52.427079 + Test 015 fv3_ccpp_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_multigases_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -935,11 +980,14 @@ Checking test 016 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 105.517589 + Test 016 fv3_ccpp_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_32bit_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ Checking test 017 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 53.975294 + Test 017 fv3_ccpp_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1059,11 +1110,14 @@ Checking test 018 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 393.675727 + Test 018 fv3_ccpp_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1126,54 +1180,87 @@ Checking test 019 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK + +The total amount of wall time = 426.333542 + Test 019 fv3_ccpp_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +The total amount of wall time = 856.461944 + Test 020 fv3_ccpp_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_restart_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + +The total amount of wall time = 479.157608 + Test 021 fv3_ccpp_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_prod +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 844.481965 + Test 022 fv3_ccpp_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 023 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_hafs_prod +Checking test 023 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 849.056197 + +Test 023 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 023 fv3_ccpp_regional_quilt_netcdf_parallel PASS +The total amount of wall time = 842.995023 + +Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_prod -Checking test 024 fv3_ccpp_gfdlmp results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1216,12 +1303,15 @@ Checking test 024 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 024 fv3_ccpp_gfdlmp PASS +The total amount of wall time = 60.895407 + +Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1264,12 +1354,15 @@ Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmprad_gwd PASS + +The total amount of wall time = 61.145853 + +Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1312,12 +1405,15 @@ Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_noahmp PASS +The total amount of wall time = 60.901828 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_csawmg_prod -Checking test 027 fv3_ccpp_csawmg results .... +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1360,12 +1456,15 @@ Checking test 027 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 027 fv3_ccpp_csawmg PASS +The total amount of wall time = 152.610570 + +Test 028 fv3_ccpp_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmf_prod -Checking test 028 fv3_ccpp_satmedmf results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1408,12 +1507,15 @@ Checking test 028 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_satmedmf PASS + +The total amount of wall time = 65.117735 + +Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_satmedmfq_prod -Checking test 029 fv3_ccpp_satmedmfq results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1456,12 +1558,15 @@ Checking test 029 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmfq PASS +The total amount of wall time = 65.810936 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmp_32bit_prod -Checking test 030 fv3_ccpp_gfdlmp_32bit results .... +Test 030 fv3_ccpp_satmedmfq PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1504,12 +1609,15 @@ Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmp_32bit PASS + +The total amount of wall time = 52.524905 + +Test 031 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1556,12 +1664,15 @@ Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS +The total amount of wall time = 97.468580 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_cpt_prod -Checking test 032 fv3_ccpp_cpt results .... +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1610,12 +1721,15 @@ Checking test 032 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_cpt PASS +The total amount of wall time = 354.875700 + +Test 033 fv3_ccpp_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_prod -Checking test 033 fv3_ccpp_gsd results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1702,12 +1816,15 @@ Checking test 033 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_gsd PASS + +The total amount of wall time = 240.290235 + +Test 034 fv3_ccpp_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_prod -Checking test 034 fv3_ccpp_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ Checking test 034 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_thompson PASS +The total amount of wall time = 113.245163 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_prod -Checking test 035 fv3_ccpp_thompson_no_aero results .... +Test 035 fv3_ccpp_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_no_aero_prod +Checking test 036 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1958,15 @@ Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_thompson_no_aero PASS +The total amount of wall time = 107.577594 + +Test 036 fv3_ccpp_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_prod -Checking test 036 fv3_ccpp_gfs_v15p2 results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_prod +Checking test 037 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_gfs_v15p2 PASS +The total amount of wall time = 117.234830 + +Test 037 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_prod -Checking test 037 fv3_ccpp_gfs_v16 results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_prod +Checking test 038 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1986,12 +2112,15 @@ Checking test 037 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 037 fv3_ccpp_gfs_v16 PASS +The total amount of wall time = 146.070385 + +Test 038 fv3_ccpp_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_restart_prod -Checking test 038 fv3_ccpp_gfs_v16_restart results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_restart_prod +Checking test 039 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2036,12 +2165,15 @@ Checking test 038 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 038 fv3_ccpp_gfs_v16_restart PASS + +The total amount of wall time = 75.699602 + +Test 039 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_stochy_prod -Checking test 039 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_stochy_prod +Checking test 040 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2104,12 +2236,15 @@ Checking test 039 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 039 fv3_ccpp_gfs_v16_stochy PASS +The total amount of wall time = 66.131955 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... +Test 040 fv3_ccpp_gfs_v16_stochy PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 041 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2172,12 +2307,15 @@ Checking test 040 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v15p2_RRTMGP PASS +The total amount of wall time = 186.196478 + +Test 041 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 042 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2240,12 +2378,15 @@ Checking test 041 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16_RRTMGP PASS + +The total amount of wall time = 188.927299 + +Test 042 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2302,12 +2443,86 @@ Checking test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +The total amount of wall time = 802.617376 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmg_prod -Checking test 043 fv3_ccpp_gfsv16_csawmg results .... +Test 043 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 663.423530 + +Test 044 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_csawmg_prod +Checking test 045 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2350,12 +2565,15 @@ Checking test 043 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfsv16_csawmg PASS + +The total amount of wall time = 162.800113 + +Test 045 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2398,12 +2616,15 @@ Checking test 044 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfsv16_csawmgt PASS +The total amount of wall time = 160.934900 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gocart_clm_prod -Checking test 045 fv3_ccpp_gocart_clm results .... +Test 046 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gocart_clm_prod +Checking test 047 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2446,12 +2667,15 @@ Checking test 045 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gocart_clm PASS +The total amount of wall time = 66.963537 + +Test 047 fv3_ccpp_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_flake_prod -Checking test 046 fv3_ccpp_gfs_v16_flake results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_flake_prod +Checking test 048 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2514,12 +2738,15 @@ Checking test 046 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_flake PASS + +The total amount of wall time = 119.851463 + +Test 048 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 049 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2582,12 +2809,15 @@ Checking test 047 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 191.677747 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +Test 049 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2600,12 +2830,15 @@ Checking test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 048 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + +The total amount of wall time = 356.551422 + +Test 050 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 051 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2662,12 +2895,15 @@ Checking test 049 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_ugwpv1 PASS +The total amount of wall time = 234.051149 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +Test 051 fv3_ccpp_gfsv16_ugwpv1 PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2724,12 +2960,15 @@ Checking test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +The total amount of wall time = 230.930722 + +Test 052 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 053 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2792,12 +3031,15 @@ Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfs_v15p2_debug PASS + +The total amount of wall time = 272.393572 + +Test 053 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_debug_prod -Checking test 052 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_debug_prod +Checking test 054 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2860,12 +3102,15 @@ Checking test 052 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_debug PASS +The total amount of wall time = 209.701201 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +Test 054 fv3_ccpp_gfs_v16_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2928,12 +3173,15 @@ Checking test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +The total amount of wall time = 437.835363 + +Test 055 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 056 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2996,23 +3244,29 @@ Checking test 054 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +The total amount of wall time = 447.543650 + +Test 056 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_regional_control_debug_prod -Checking test 055 fv3_ccpp_regional_control_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_regional_control_debug_prod +Checking test 057 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 055 fv3_ccpp_regional_control_debug PASS +The total amount of wall time = 457.030482 + +Test 057 fv3_ccpp_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_control_debug_prod -Checking test 056 fv3_ccpp_control_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_control_debug_prod +Checking test 058 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3037,12 +3291,15 @@ Checking test 056 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 056 fv3_ccpp_control_debug PASS + +The total amount of wall time = 159.978141 + +Test 058 fv3_ccpp_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_stretched_nest_debug_prod -Checking test 057 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_stretched_nest_debug_prod +Checking test 059 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3057,12 +3314,15 @@ Checking test 057 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 057 fv3_ccpp_stretched_nest_debug PASS +The total amount of wall time = 534.778950 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_debug_prod -Checking test 058 fv3_ccpp_gsd_debug results .... +Test 059 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gsd_debug_prod +Checking test 060 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3125,12 +3385,15 @@ Checking test 058 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gsd_debug PASS +The total amount of wall time = 240.124856 + +Test 060 fv3_ccpp_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 061 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3193,12 +3456,15 @@ Checking test 059 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gsd_diag3d_debug PASS + +The total amount of wall time = 270.495321 + +Test 061 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_debug_prod -Checking test 060 fv3_ccpp_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_debug_prod +Checking test 062 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3261,12 +3527,15 @@ Checking test 060 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_thompson_debug PASS +The total amount of wall time = 416.982382 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... +Test 062 fv3_ccpp_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 063 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3329,12 +3598,15 @@ Checking test 061 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_thompson_no_aero_debug PASS +The total amount of wall time = 403.741014 + +Test 063 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 064 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3669,15 @@ Checking test 062 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_rrfs_v1beta_debug PASS + +The total amount of wall time = 231.947853 + +Test 064 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3740,15 @@ Checking test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 063 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 247.905366 -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Test 065 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3483,12 +3761,15 @@ Checking test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 064 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 463.748015 + +Test 066 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_257233/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_82048/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 067 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3545,9 +3826,12 @@ Checking test 065 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 065 fv3_ccpp_gfsv16_ugwpv1_debug PASS + +The total amount of wall time = 711.012031 + +Test 067 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 00:55:53 GMT 2021 -Elapsed time: 02h:00m:45s. Have a nice day! +Mon Mar 15 18:14:39 GMT 2021 +Elapsed time: 02h:43m:24s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b150da682..301964dfb 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Thu Feb 18 10:57:36 CST 2021 +Fri Mar 12 21:17:03 CST 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 47.335967 + Test 001 fv3_ccpp_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_decomp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.909151 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_2threads_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 53.512654 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 24.881297 + Test 004 fv3_ccpp_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_read_inc_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.960439 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 152.822694 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 45.459556 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 53.314491 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.327716 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.746261 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 102.974613 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stochy_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 49.343612 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_ca_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 30.400909 + Test 013 fv3_ccpp_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lndp_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 48.801022 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_iau_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 44.134449 + Test 015 fv3_ccpp_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_lheatstrg_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 43.349731 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -978,11 +1026,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + + 0: The total amount of wall time = 654.665384 + Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,11 +1078,14 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + + 0: The total amount of wall time = 798.266029 + Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_wrtGauss_nemsio_c768_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1076,11 +1130,14 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.glo_10m .........OK Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK + + 0: The total amount of wall time = 673.063059 + Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_multigases_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_multigases_prod Checking test 020 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1150,11 +1207,14 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 85.409100 + Test 020 fv3_ccpp_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_32bit_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_32bit_prod Checking test 021 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1218,11 +1278,14 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 45.169483 + Test 021 fv3_ccpp_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_prod Checking test 022 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1274,11 +1337,14 @@ Checking test 022 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 217.704896 + Test 022 fv3_ccpp_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_nest_prod Checking test 023 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1341,54 +1407,87 @@ Checking test 023 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK + + 0: The total amount of wall time = 240.960080 + Test 023 fv3_ccpp_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_control_prod Checking test 024 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + + 0: The total amount of wall time = 535.673257 + Test 024 fv3_ccpp_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_restart_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_restart_prod Checking test 025 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + + 0: The total amount of wall time = 298.239390 + Test 025 fv3_ccpp_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_prod +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_prod Checking test 026 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + + 0: The total amount of wall time = 591.477761 + Test 026 fv3_ccpp_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_hafs_prod +Checking test 027 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + + 0: The total amount of wall time = 580.465772 + +Test 027 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS + + 0: The total amount of wall time = 584.521443 + +Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_prod -Checking test 028 fv3_ccpp_gfdlmp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmp_prod +Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1431,12 +1530,15 @@ Checking test 028 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmp PASS + + 0: The total amount of wall time = 47.435399 + +Test 029 fv3_ccpp_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1479,12 +1581,15 @@ Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_gwd PASS + 0: The total amount of wall time = 48.252765 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... +Test 030 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1527,12 +1632,15 @@ Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_ccpp_gfdlmprad_noahmp PASS + 0: The total amount of wall time = 56.766459 + +Test 031 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_csawmg_prod -Checking test 031 fv3_ccpp_csawmg results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_csawmg_prod +Checking test 032 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1575,12 +1683,15 @@ Checking test 031 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_csawmg PASS + 0: The total amount of wall time = 115.579388 + +Test 032 fv3_ccpp_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmf_prod -Checking test 032 fv3_ccpp_satmedmf results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmf_prod +Checking test 033 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1623,12 +1734,15 @@ Checking test 032 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmf PASS + + 0: The total amount of wall time = 53.209134 + +Test 033 fv3_ccpp_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_satmedmfq_prod -Checking test 033 fv3_ccpp_satmedmfq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmfq_prod +Checking test 034 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1671,12 +1785,15 @@ Checking test 033 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 033 fv3_ccpp_satmedmfq PASS + + 0: The total amount of wall time = 53.012331 + +Test 034 fv3_ccpp_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmp_32bit_prod -Checking test 034 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmp_32bit_prod +Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1719,12 +1836,15 @@ Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmp_32bit PASS + 0: The total amount of wall time = 46.385652 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... +Test 035 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1771,12 +1891,15 @@ Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS + 0: The total amount of wall time = 77.148335 + +Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_cpt_prod -Checking test 036 fv3_ccpp_cpt results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_cpt_prod +Checking test 037 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1825,12 +1948,15 @@ Checking test 036 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 036 fv3_ccpp_cpt PASS + 0: The total amount of wall time = 266.666866 + +Test 037 fv3_ccpp_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_prod -Checking test 037 fv3_ccpp_gsd results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_prod +Checking test 038 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1917,12 +2043,15 @@ Checking test 037 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_gsd PASS + + 0: The total amount of wall time = 187.188712 + +Test 038 fv3_ccpp_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rap_prod -Checking test 038 fv3_ccpp_rap results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rap_prod +Checking test 039 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1985,12 +2114,15 @@ Checking test 038 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_rap PASS + + 0: The total amount of wall time = 96.997649 + +Test 039 fv3_ccpp_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_hrrr_prod -Checking test 039 fv3_ccpp_hrrr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_hrrr_prod +Checking test 040 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2053,12 +2185,15 @@ Checking test 039 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_hrrr PASS + 0: The total amount of wall time = 104.337900 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_prod -Checking test 040 fv3_ccpp_thompson results .... +Test 040 fv3_ccpp_hrrr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_prod +Checking test 041 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2121,12 +2256,15 @@ Checking test 040 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson PASS + 0: The total amount of wall time = 95.628960 + +Test 041 fv3_ccpp_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_prod -Checking test 041 fv3_ccpp_thompson_no_aero results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_no_aero_prod +Checking test 042 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2189,12 +2327,15 @@ Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_thompson_no_aero PASS + 0: The total amount of wall time = 89.094245 + +Test 042 fv3_ccpp_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_prod -Checking test 042 fv3_ccpp_rrfs_v1beta results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rrfs_v1beta_prod +Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2257,12 +2398,15 @@ Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_ccpp_rrfs_v1beta PASS + + 0: The total amount of wall time = 105.609223 + +Test 043 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_prod -Checking test 043 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_prod +Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2325,12 +2469,15 @@ Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v15p2 PASS + + 0: The total amount of wall time = 99.985320 + +Test 044 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_prod -Checking test 044 fv3_ccpp_gfs_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_prod +Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2405,12 +2552,15 @@ Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16 PASS + 0: The total amount of wall time = 113.638839 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_restart_prod -Checking test 045 fv3_ccpp_gfs_v16_restart results .... +Test 045 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_restart_prod +Checking test 046 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2455,12 +2605,15 @@ Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_restart PASS + 0: The total amount of wall time = 62.982109 + +Test 046 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_stochy_prod -Checking test 046 fv3_ccpp_gfs_v16_stochy results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_stochy_prod +Checking test 047 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2523,12 +2676,15 @@ Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_stochy PASS + 0: The total amount of wall time = 53.746916 + +Test 047 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2591,12 +2747,15 @@ Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS + + 0: The total amount of wall time = 162.150450 + +Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2659,12 +2818,15 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS + + 0: The total amount of wall time = 163.253696 + +Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2721,12 +2883,86 @@ Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + 0: The total amount of wall time = 626.222349 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmg_prod -Checking test 050 fv3_ccpp_gfsv16_csawmg results .... +Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 190.698181 + +Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_csawmg_prod +Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2769,12 +3005,15 @@ Checking test 050 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmg PASS + 0: The total amount of wall time = 126.215471 + +Test 052 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2817,12 +3056,15 @@ Checking test 051 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_ccpp_gfsv16_csawmgt PASS + + 0: The total amount of wall time = 124.487777 + +Test 053 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gocart_clm_prod -Checking test 052 fv3_ccpp_gocart_clm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gocart_clm_prod +Checking test 054 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2865,12 +3107,15 @@ Checking test 052 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gocart_clm PASS + + 0: The total amount of wall time = 59.289760 + +Test 054 fv3_ccpp_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_flake_prod -Checking test 053 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_flake_prod +Checking test 055 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2933,12 +3178,15 @@ Checking test 053 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfs_v16_flake PASS + 0: The total amount of wall time = 104.836787 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Test 055 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3001,12 +3249,15 @@ Checking test 054 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_HAFS_v0_hwrf_thompson PASS + 0: The total amount of wall time = 147.882367 + +Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3019,12 +3270,15 @@ Checking test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 055 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS + 0: The total amount of wall time = 289.858017 + +Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3081,12 +3335,15 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1 PASS + + 0: The total amount of wall time = 170.089998 + +Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3143,12 +3400,15 @@ Checking test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + 0: The total amount of wall time = 172.388475 + +Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3211,12 +3471,15 @@ Checking test 058 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v15p2_debug PASS + 0: The total amount of wall time = 251.703488 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_debug_prod -Checking test 059 fv3_ccpp_gfs_v16_debug results .... +Test 060 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_debug_prod +Checking test 061 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3279,12 +3542,15 @@ Checking test 059 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v16_debug PASS + 0: The total amount of wall time = 189.430133 + +Test 061 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3347,12 +3613,15 @@ Checking test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + 0: The total amount of wall time = 373.969692 + +Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3415,23 +3684,29 @@ Checking test 061 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + + 0: The total amount of wall time = 382.031132 + +Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_regional_control_debug_prod -Checking test 062 fv3_ccpp_regional_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_control_debug_prod +Checking test 064 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 062 fv3_ccpp_regional_control_debug PASS + + 0: The total amount of wall time = 367.720884 + +Test 064 fv3_ccpp_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_control_debug_prod -Checking test 063 fv3_ccpp_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_debug_prod +Checking test 065 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3456,12 +3731,15 @@ Checking test 063 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 063 fv3_ccpp_control_debug PASS + 0: The total amount of wall time = 149.916615 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_stretched_nest_debug_prod -Checking test 064 fv3_ccpp_stretched_nest_debug results .... +Test 065 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_nest_debug_prod +Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3476,12 +3754,15 @@ Checking test 064 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 064 fv3_ccpp_stretched_nest_debug PASS + 0: The total amount of wall time = 371.255363 + +Test 066 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_debug_prod -Checking test 065 fv3_ccpp_gsd_debug results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_debug_prod +Checking test 067 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3544,12 +3825,15 @@ Checking test 065 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_gsd_debug PASS + 0: The total amount of wall time = 221.754395 + +Test 067 fv3_ccpp_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3612,12 +3896,15 @@ Checking test 066 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_gsd_diag3d_debug PASS + + 0: The total amount of wall time = 296.344801 + +Test 068 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_debug_prod -Checking test 067 fv3_ccpp_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_debug_prod +Checking test 069 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3680,12 +3967,15 @@ Checking test 067 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 067 fv3_ccpp_thompson_debug PASS + + 0: The total amount of wall time = 349.154207 + +Test 069 fv3_ccpp_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3748,12 +4038,15 @@ Checking test 068 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 068 fv3_ccpp_thompson_no_aero_debug PASS + 0: The total amount of wall time = 369.681577 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... +Test 070 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3816,12 +4109,15 @@ Checking test 069 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 069 fv3_ccpp_rrfs_v1beta_debug PASS + 0: The total amount of wall time = 207.134888 + +Test 071 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3884,12 +4180,15 @@ Checking test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + 0: The total amount of wall time = 216.447621 + +Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3902,12 +4201,15 @@ Checking test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 071 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + + 0: The total amount of wall time = 417.919395 + +Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3964,12 +4266,15 @@ Checking test 072 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 072 fv3_ccpp_gfsv16_ugwpv1_debug PASS + + 0: The total amount of wall time = 567.689142 + +Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_prod -Checking test 073 cpld_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_prod +Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4017,12 +4322,15 @@ Checking test 073 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_control PASS + 0: The total amount of wall time = 99.768565 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_prod -Checking test 074 cpld_restart results .... +Test 075 cpld_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_prod +Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4070,12 +4378,15 @@ Checking test 074 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_restart PASS + 0: The total amount of wall time = 75.123364 + +Test 076 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_prod -Checking test 075 cpld_controlfrac results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_prod +Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4123,12 +4434,15 @@ Checking test 075 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_controlfrac PASS + 0: The total amount of wall time = 101.608224 + +Test 077 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_prod -Checking test 076 cpld_restartfrac results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_prod +Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4176,12 +4490,15 @@ Checking test 076 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_restartfrac PASS + + 0: The total amount of wall time = 68.391162 + +Test 078 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_2threads_prod -Checking test 077 cpld_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_2threads_prod +Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4229,12 +4546,15 @@ Checking test 077 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_2threads PASS + + 0: The total amount of wall time = 133.696323 + +Test 079 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_decomp_prod -Checking test 078 cpld_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_decomp_prod +Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4282,12 +4602,15 @@ Checking test 078 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_decomp PASS + 0: The total amount of wall time = 96.867347 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_satmedmf_prod -Checking test 079 cpld_satmedmf results .... +Test 080 cpld_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_satmedmf_prod +Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4335,12 +4658,15 @@ Checking test 079 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_satmedmf PASS + 0: The total amount of wall time = 96.332041 + +Test 081 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_ca_prod -Checking test 080 cpld_ca results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_ca_prod +Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4388,12 +4714,15 @@ Checking test 080 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 080 cpld_ca PASS + 0: The total amount of wall time = 97.729955 + +Test 082 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c192_prod -Checking test 081 cpld_control_c192 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c192_prod +Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4441,12 +4770,15 @@ Checking test 081 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 081 cpld_control_c192 PASS + 0: The total amount of wall time = 383.916568 + +Test 083 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c192_prod -Checking test 082 cpld_restart_c192 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c192_prod +Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4494,12 +4826,15 @@ Checking test 082 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 082 cpld_restart_c192 PASS + 0: The total amount of wall time = 275.426220 + +Test 084 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c192_prod -Checking test 083 cpld_controlfrac_c192 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c192_prod +Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4547,12 +4882,15 @@ Checking test 083 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 083 cpld_controlfrac_c192 PASS + + 0: The total amount of wall time = 381.668018 + +Test 085 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c192_prod -Checking test 084 cpld_restartfrac_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c192_prod +Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4600,12 +4938,15 @@ Checking test 084 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 084 cpld_restartfrac_c192 PASS + + 0: The total amount of wall time = 271.383950 + +Test 086 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_c384_prod -Checking test 085 cpld_control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c384_prod +Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4656,12 +4997,15 @@ Checking test 085 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 085 cpld_control_c384 PASS + 0: The total amount of wall time = 1306.790624 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_c384_prod -Checking test 086 cpld_restart_c384 results .... +Test 087 cpld_control_c384 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c384_prod +Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4712,12 +5056,15 @@ Checking test 086 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 086 cpld_restart_c384 PASS + 0: The total amount of wall time = 695.602527 + +Test 088 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_controlfrac_c384_prod -Checking test 087 cpld_controlfrac_c384 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c384_prod +Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4768,12 +5115,15 @@ Checking test 087 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 087 cpld_controlfrac_c384 PASS + 0: The total amount of wall time = 1312.468145 + +Test 089 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restartfrac_c384_prod -Checking test 088 cpld_restartfrac_c384 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c384_prod +Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4824,12 +5174,15 @@ Checking test 088 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 088 cpld_restartfrac_c384 PASS + + 0: The total amount of wall time = 685.239220 + +Test 090 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_prod -Checking test 089 cpld_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_prod +Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4880,12 +5233,15 @@ Checking test 089 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_bmark PASS + + 0: The total amount of wall time = 842.253747 + +Test 091 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmark_prod -Checking test 090 cpld_restart_bmark results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmark_prod +Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4936,12 +5292,15 @@ Checking test 090 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 090 cpld_restart_bmark PASS + 0: The total amount of wall time = 452.600613 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_prod -Checking test 091 cpld_bmarkfrac results .... +Test 092 cpld_restart_bmark PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_prod +Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4992,12 +5351,15 @@ Checking test 091 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_bmarkfrac PASS + 0: The total amount of wall time = 831.423830 + +Test 093 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_prod -Checking test 092 cpld_restart_bmarkfrac results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_prod +Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5048,12 +5410,15 @@ Checking test 092 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 092 cpld_restart_bmarkfrac PASS + 0: The total amount of wall time = 442.128834 + +Test 094 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_v16_prod -Checking test 093 cpld_bmarkfrac_v16 results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_v16_prod +Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5104,12 +5469,15 @@ Checking test 093 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_bmarkfrac_v16 PASS + + 0: The total amount of wall time = 1349.080037 + +Test 095 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_restart_bmarkfrac_v16_prod -Checking test 094 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_v16_prod +Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5160,12 +5528,15 @@ Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 094 cpld_restart_bmarkfrac_v16 PASS + + 0: The total amount of wall time = 716.142617 + +Test 096 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmark_wave_prod -Checking test 095 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_wave_prod +Checking test 097 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5219,12 +5590,15 @@ Checking test 095 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 095 cpld_bmark_wave PASS + 0: The total amount of wall time = 1402.828957 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_prod -Checking test 096 cpld_bmarkfrac_wave results .... +Test 097 cpld_bmark_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_prod +Checking test 098 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5278,27 +5652,29 @@ Checking test 096 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 096 cpld_bmarkfrac_wave PASS + 0: The total amount of wall time = 1416.011810 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_bmarkfrac_wave_v16_prod -Checking test 097 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK +Test 098 cpld_bmarkfrac_wave PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_v16_prod +Checking test 099 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5335,14 +5711,17 @@ Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 097 cpld_bmarkfrac_wave_v16 PASS + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + 0: The total amount of wall time = 939.150736 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_control_wave_prod -Checking test 098 cpld_control_wave results .... +Test 099 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_wave_prod +Checking test 100 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5393,12 +5772,15 @@ Checking test 098 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 098 cpld_control_wave PASS + 0: The total amount of wall time = 790.442777 + +Test 100 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debug_prod -Checking test 099 cpld_debug results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debug_prod +Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5446,12 +5828,15 @@ Checking test 099 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 099 cpld_debug PASS + 0: The total amount of wall time = 321.112205 + +Test 101 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/cpld_debugfrac_prod -Checking test 100 cpld_debugfrac results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debugfrac_prod +Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5499,87 +5884,114 @@ Checking test 100 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 100 cpld_debugfrac PASS + + 0: The total amount of wall time = 322.169993 + +Test 102 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_cfsr -Checking test 101 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_cfsr +Checking test 103 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_control_cfsr PASS + + 0: The total amount of wall time = 99.728356 + +Test 103 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_restart_cfsr -Checking test 102 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_restart_cfsr +Checking test 104 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_restart_cfsr PASS + 0: The total amount of wall time = 68.416477 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_control_gefs -Checking test 103 datm_control_gefs results .... +Test 104 datm_restart_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_gefs +Checking test 105 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_control_gefs PASS + 0: The total amount of wall time = 94.162639 + +Test 105 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_cfsr -Checking test 104 datm_bulk_cfsr results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_cfsr +Checking test 106 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 104 datm_bulk_cfsr PASS + 0: The total amount of wall time = 99.111430 + +Test 106 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_bulk_gefs -Checking test 105 datm_bulk_gefs results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_gefs +Checking test 107 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 105 datm_bulk_gefs PASS + + 0: The total amount of wall time = 92.246859 + +Test 107 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_cfsr -Checking test 106 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_cfsr +Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 106 datm_mx025_cfsr PASS + + 0: The total amount of wall time = 391.029178 + +Test 108 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_mx025_gefs -Checking test 107 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_gefs +Checking test 109 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 107 datm_mx025_gefs PASS + 0: The total amount of wall time = 388.183296 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_239111/datm_debug_cfsr -Checking test 108 datm_debug_cfsr results .... +Test 109 datm_mx025_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_debug_cfsr +Checking test 110 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 108 datm_debug_cfsr PASS + + 0: The total amount of wall time = 281.109002 + +Test 110 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 21:22:48 CST 2021 -Elapsed time: 10h:25m:12s. Have a nice day! +Fri Mar 12 23:59:51 CST 2021 +Elapsed time: 02h:42m:49s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 102d04a38..a29b81b18 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Thu Feb 18 16:08:52 UTC 2021 +Mon Mar 15 15:10:33 UTC 2021 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 99.580387 + Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_decomp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 93.681293 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_2threads_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 47.362766 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 24.842162 + Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 51.148666 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 130.613144 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 56.133268 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 156.252763 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 59.755501 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 54.126902 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 150.745275 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stochy_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 56.852801 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_ca_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 114.296214 + Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lndp_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 69.905051 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_iau_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 49.435697 + Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 51.358493 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_multigases_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1003,11 +1051,14 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 102.482825 + Test 017 fv3_ccpp_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1071,11 +1122,14 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 109.052814 + Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1127,11 +1181,14 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 355.139031 + Test 019 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1194,54 +1251,87 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK + +The total amount of wall time = 493.564882 + Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +The total amount of wall time = 708.691047 + Test 021 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + +The total amount of wall time = 408.314958 + Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +The total amount of wall time = 702.871821 + Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 024 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_hafs_prod +Checking test 024 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +The total amount of wall time = 702.577217 + +Test 024 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 024 fv3_ccpp_regional_quilt_netcdf_parallel PASS +The total amount of wall time = 702.357430 + +Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_prod -Checking test 025 fv3_ccpp_gfdlmp results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_prod +Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1284,12 +1374,15 @@ Checking test 025 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 025 fv3_ccpp_gfdlmp PASS +The total amount of wall time = 122.097066 + +Test 026 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1332,12 +1425,15 @@ Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 026 fv3_ccpp_gfdlmprad_gwd PASS + +The total amount of wall time = 98.792328 + +Test 027 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1380,12 +1476,15 @@ Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmprad_noahmp PASS +The total amount of wall time = 102.487017 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_csawmg_prod -Checking test 028 fv3_ccpp_csawmg results .... +Test 028 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1428,12 +1527,15 @@ Checking test 028 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_ccpp_csawmg PASS + +The total amount of wall time = 161.005073 + +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmf_prod -Checking test 029 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmf_prod +Checking test 030 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1476,12 +1578,15 @@ Checking test 029 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_ccpp_satmedmf PASS +The total amount of wall time = 58.566167 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_satmedmfq_prod -Checking test 030 fv3_ccpp_satmedmfq results .... +Test 030 fv3_ccpp_satmedmf PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmfq_prod +Checking test 031 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1524,12 +1629,15 @@ Checking test 030 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_satmedmfq PASS +The total amount of wall time = 57.543109 + +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmp_32bit_prod -Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_32bit_prod +Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1572,12 +1680,15 @@ Checking test 031 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 031 fv3_ccpp_gfdlmp_32bit PASS +The total amount of wall time = 60.637933 + +Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1624,12 +1735,15 @@ Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS +The total amount of wall time = 114.488328 + +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_cpt_prod -Checking test 033 fv3_ccpp_cpt results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_cpt_prod +Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1678,12 +1792,15 @@ Checking test 033 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_cpt PASS + +The total amount of wall time = 289.126417 + +Test 034 fv3_ccpp_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_prod -Checking test 034 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_prod +Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1770,12 +1887,15 @@ Checking test 034 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 034 fv3_ccpp_gsd PASS +The total amount of wall time = 199.176066 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rap_prod -Checking test 035 fv3_ccpp_rap results .... +Test 035 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rap_prod +Checking test 036 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1838,12 +1958,15 @@ Checking test 035 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 035 fv3_ccpp_rap PASS +The total amount of wall time = 106.102948 + +Test 036 fv3_ccpp_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_hrrr_prod -Checking test 036 fv3_ccpp_hrrr results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_hrrr_prod +Checking test 037 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1906,12 +2029,15 @@ Checking test 036 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_hrrr PASS + +The total amount of wall time = 121.642248 + +Test 037 fv3_ccpp_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_prod -Checking test 037 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_prod +Checking test 038 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1974,12 +2100,15 @@ Checking test 037 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_thompson PASS +The total amount of wall time = 98.285796 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_prod -Checking test 038 fv3_ccpp_thompson_no_aero results .... +Test 038 fv3_ccpp_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_prod +Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2042,12 +2171,15 @@ Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_thompson_no_aero PASS + +The total amount of wall time = 93.686278 + +Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_prod -Checking test 039 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_prod +Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2110,12 +2242,15 @@ Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_rrfs_v1beta PASS +The total amount of wall time = 111.501950 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_prod -Checking test 040 fv3_ccpp_gfs_v15p2 results .... +Test 040 fv3_ccpp_rrfs_v1beta PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_prod +Checking test 041 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2178,12 +2313,15 @@ Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 040 fv3_ccpp_gfs_v15p2 PASS +The total amount of wall time = 109.180521 + +Test 041 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_prod -Checking test 041 fv3_ccpp_gfs_v16 results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_prod +Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2258,12 +2396,15 @@ Checking test 041 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 041 fv3_ccpp_gfs_v16 PASS + +The total amount of wall time = 131.858752 + +Test 042 fv3_ccpp_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_restart_prod -Checking test 042 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_restart_prod +Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2308,12 +2449,15 @@ Checking test 042 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v16_restart PASS +The total amount of wall time = 68.244794 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_stochy_prod -Checking test 043 fv3_ccpp_gfs_v16_stochy results .... +Test 043 fv3_ccpp_gfs_v16_restart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_stochy_prod +Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2376,12 +2520,15 @@ Checking test 043 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16_stochy PASS +The total amount of wall time = 62.121171 + +Test 044 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2444,12 +2591,15 @@ Checking test 044 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v15p2_RRTMGP PASS +The total amount of wall time = 176.063395 + +Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2512,12 +2662,15 @@ Checking test 045 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_RRTMGP PASS +The total amount of wall time = 176.542941 + +Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2574,12 +2727,86 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + +The total amount of wall time = 718.556767 + +Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmg_prod -Checking test 047 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + +The total amount of wall time = 172.144048 + +Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_csawmg_prod +Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2622,12 +2849,15 @@ Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfsv16_csawmg PASS +The total amount of wall time = 145.900090 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... +Test 049 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2670,12 +2900,15 @@ Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfsv16_csawmgt PASS + +The total amount of wall time = 162.009408 + +Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gocart_clm_prod -Checking test 049 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gocart_clm_prod +Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2718,12 +2951,15 @@ Checking test 049 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_ccpp_gocart_clm PASS +The total amount of wall time = 93.182478 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_flake_prod -Checking test 050 fv3_ccpp_gfs_v16_flake results .... +Test 051 fv3_ccpp_gocart_clm PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_flake_prod +Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2786,12 +3022,15 @@ Checking test 050 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfs_v16_flake PASS +The total amount of wall time = 117.063447 + +Test 052 fv3_ccpp_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2854,12 +3093,15 @@ Checking test 051 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 160.487371 + +Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2872,12 +3114,15 @@ Checking test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 052 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +The total amount of wall time = 301.412646 + +Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2934,12 +3179,15 @@ Checking test 053 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_gfsv16_ugwpv1 PASS + +The total amount of wall time = 192.811337 + +Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2996,12 +3244,15 @@ Checking test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 054 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +The total amount of wall time = 191.702998 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... +Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3064,12 +3315,15 @@ Checking test 055 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfs_v15p2_debug PASS +The total amount of wall time = 211.346801 + +Test 057 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_debug_prod -Checking test 056 fv3_ccpp_gfs_v16_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_debug_prod +Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3132,12 +3386,15 @@ Checking test 056 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfs_v16_debug PASS + +The total amount of wall time = 162.230739 + +Test 058 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3200,12 +3457,15 @@ Checking test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +The total amount of wall time = 342.379244 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3268,23 +3528,29 @@ Checking test 058 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + +The total amount of wall time = 350.378805 + +Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_regional_control_debug_prod -Checking test 059 fv3_ccpp_regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_debug_prod +Checking test 061 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 059 fv3_ccpp_regional_control_debug PASS +The total amount of wall time = 343.168795 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_control_debug_prod -Checking test 060 fv3_ccpp_control_debug results .... +Test 061 fv3_ccpp_regional_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_debug_prod +Checking test 062 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3309,12 +3575,15 @@ Checking test 060 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 060 fv3_ccpp_control_debug PASS +The total amount of wall time = 129.611232 + +Test 062 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_stretched_nest_debug_prod -Checking test 061 fv3_ccpp_stretched_nest_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_nest_debug_prod +Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3329,12 +3598,15 @@ Checking test 061 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 061 fv3_ccpp_stretched_nest_debug PASS + +The total amount of wall time = 410.472189 + +Test 063 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_debug_prod -Checking test 062 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_debug_prod +Checking test 064 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3397,12 +3669,15 @@ Checking test 062 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 062 fv3_ccpp_gsd_debug PASS +The total amount of wall time = 197.373577 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... +Test 064 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3465,12 +3740,15 @@ Checking test 063 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_ccpp_gsd_diag3d_debug PASS +The total amount of wall time = 230.638613 + +Test 065 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_debug_prod -Checking test 064 fv3_ccpp_thompson_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_debug_prod +Checking test 066 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3533,12 +3811,15 @@ Checking test 064 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_thompson_debug PASS +The total amount of wall time = 322.695953 + +Test 066 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3601,12 +3882,15 @@ Checking test 065 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_thompson_no_aero_debug PASS +The total amount of wall time = 310.005248 + +Test 067 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3669,12 +3953,15 @@ Checking test 066 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_rrfs_v1beta_debug PASS + +The total amount of wall time = 190.089158 + +Test 068 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3737,12 +4024,15 @@ Checking test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 067 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 185.737524 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3755,12 +4045,15 @@ Checking test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 068 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +The total amount of wall time = 354.356825 + +Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_7643/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3817,9 +4110,12 @@ Checking test 069 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 069 fv3_ccpp_gfsv16_ugwpv1_debug PASS + +The total amount of wall time = 538.833850 + +Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 18 16:51:34 UTC 2021 -Elapsed time: 00h:42m:42s. Have a nice day! +Mon Mar 15 15:58:20 UTC 2021 +Elapsed time: 00h:47m:47s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 4dafe6fe6..62032d559 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Thu Feb 18 21:24:50 UTC 2021 +Mon Mar 15 15:09:37 UTC 2021 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -67,11 +67,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 50.002583 + Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_decomp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -135,11 +138,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 50.402100 + Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_2threads_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -203,11 +209,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 41.017446 + Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -253,11 +262,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 24.566906 + Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_read_inc_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -321,11 +333,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 46.492268 + Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_esmf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -369,11 +384,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 165.809172 + Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -417,11 +435,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 46.025304 + Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_netcdf_parallel_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_netcdf_parallel_prod Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -429,8 +450,8 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -465,11 +486,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 63.915216 + Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGlatlon_netcdf_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -513,11 +537,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 45.741756 + Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_nemsio_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -561,11 +588,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 45.525979 + Test 010 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_wrtGauss_nemsio_c192_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,11 +639,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 128.519598 + Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stochy_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stochy_prod Checking test 012 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -677,11 +710,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 52.079623 + Test 012 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_ca_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -745,11 +781,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 34.346209 + Test 013 fv3_ccpp_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lndp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lndp_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,11 +852,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 53.866895 + Test 014 fv3_ccpp_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_iau_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_iau_prod Checking test 015 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -881,11 +923,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 46.185478 + Test 015 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_lheatstrg_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_lheatstrg_prod Checking test 016 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -929,11 +974,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 45.683496 + Test 016 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_prod Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -978,11 +1026,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + +[0] The total amount of wall time = 679.246413 + Test 017 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_atmwav_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,11 +1078,14 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK + +[0] The total amount of wall time = 851.013289 + Test 018 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_multigases_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1101,11 +1155,14 @@ Checking test 019 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + +[0] The total amount of wall time = 96.389756 + Test 019 fv3_ccpp_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_32bit_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_32bit_prod Checking test 020 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1169,11 +1226,14 @@ Checking test 020 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 45.432879 + Test 020 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1225,11 +1285,14 @@ Checking test 021 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 330.907296 + Test 021 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_nest_prod Checking test 022 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1292,54 +1355,87 @@ Checking test 022 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK + +[0] The total amount of wall time = 353.071570 + Test 022 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +[0] The total amount of wall time = 722.293073 + Test 023 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_restart_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK + +[0] The total amount of wall time = 403.268898 + Test 024 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_prod +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +[0] The total amount of wall time = 736.957871 + Test 025 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 026 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_hafs_prod +Checking test 026 fv3_ccpp_regional_quilt_hafs results .... + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +[0] The total amount of wall time = 738.403767 + +Test 026 fv3_ccpp_regional_quilt_hafs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_quilt_netcdf_parallel_prod +Checking test 027 fv3_ccpp_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 026 fv3_ccpp_regional_quilt_netcdf_parallel PASS + +[0] The total amount of wall time = 734.026054 + +Test 027 fv3_ccpp_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_prod -Checking test 027 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmp_prod +Checking test 028 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1382,12 +1478,15 @@ Checking test 027 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 027 fv3_ccpp_gfdlmp PASS + +[0] The total amount of wall time = 52.148013 + +Test 028 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 029 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1430,12 +1529,15 @@ Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 028 fv3_ccpp_gfdlmprad_gwd PASS +[0] The total amount of wall time = 52.829517 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... +Test 029 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 030 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1478,12 +1580,15 @@ Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_ccpp_gfdlmprad_noahmp PASS +[0] The total amount of wall time = 52.447149 + +Test 030 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_csawmg_prod -Checking test 030 fv3_ccpp_csawmg results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1526,12 +1631,15 @@ Checking test 030 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_ccpp_csawmg PASS +[0] The total amount of wall time = 134.024265 + +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmf_prod -Checking test 031 fv3_ccpp_satmedmf results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_satmedmf_prod +Checking test 032 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1574,12 +1682,15 @@ Checking test 031 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_ccpp_satmedmf PASS + +[0] The total amount of wall time = 56.039994 + +Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_satmedmfq_prod -Checking test 032 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_satmedmfq_prod +Checking test 033 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1622,12 +1733,15 @@ Checking test 032 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 032 fv3_ccpp_satmedmfq PASS + +[0] The total amount of wall time = 56.139441 + +Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmp_32bit_prod -Checking test 033 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmp_32bit_prod +Checking test 034 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1670,12 +1784,15 @@ Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 033 fv3_ccpp_gfdlmp_32bit PASS +[0] The total amount of wall time = 44.712953 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... +Test 034 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 035 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1722,12 +1839,15 @@ Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS +[0] The total amount of wall time = 90.038256 + +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_cpt_prod -Checking test 035 fv3_ccpp_cpt results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_cpt_prod +Checking test 036 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1776,12 +1896,15 @@ Checking test 035 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 035 fv3_ccpp_cpt PASS +[0] The total amount of wall time = 309.839479 + +Test 036 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_prod -Checking test 036 fv3_ccpp_gsd results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_prod +Checking test 037 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1868,12 +1991,15 @@ Checking test 036 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 036 fv3_ccpp_gsd PASS + +[0] The total amount of wall time = 210.714190 + +Test 037 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rap_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rap_prod -Checking test 037 fv3_ccpp_rap results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rap_prod +Checking test 038 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1936,12 +2062,15 @@ Checking test 037 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_ccpp_rap PASS + +[0] The total amount of wall time = 104.773158 + +Test 038 fv3_ccpp_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_hrrr_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_hrrr_prod -Checking test 038 fv3_ccpp_hrrr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_hrrr_prod +Checking test 039 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2004,12 +2133,15 @@ Checking test 038 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_ccpp_hrrr PASS +[0] The total amount of wall time = 113.518912 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_prod -Checking test 039 fv3_ccpp_thompson results .... +Test 039 fv3_ccpp_hrrr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_prod +Checking test 040 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2072,12 +2204,15 @@ Checking test 039 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_ccpp_thompson PASS +[0] The total amount of wall time = 101.215020 + +Test 040 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_prod -Checking test 040 fv3_ccpp_thompson_no_aero results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_no_aero_prod +Checking test 041 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2140,12 +2275,15 @@ Checking test 040 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_ccpp_thompson_no_aero PASS +[0] The total amount of wall time = 95.132614 + +Test 041 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_prod -Checking test 041 fv3_ccpp_rrfs_v1beta results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rrfs_v1beta_prod +Checking test 042 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2208,12 +2346,15 @@ Checking test 041 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_ccpp_rrfs_v1beta PASS + +[0] The total amount of wall time = 115.302938 + +Test 042 fv3_ccpp_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_prod -Checking test 042 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_prod +Checking test 043 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2276,12 +2417,15 @@ Checking test 042 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 042 fv3_ccpp_gfs_v15p2 PASS + +[0] The total amount of wall time = 102.243971 + +Test 043 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_prod -Checking test 043 fv3_ccpp_gfs_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_prod +Checking test 044 fv3_ccpp_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2356,12 +2500,15 @@ Checking test 043 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 043 fv3_ccpp_gfs_v16 PASS +[0] The total amount of wall time = 123.270637 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_restart_prod -Checking test 044 fv3_ccpp_gfs_v16_restart results .... +Test 044 fv3_ccpp_gfs_v16 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_restart_prod +Checking test 045 fv3_ccpp_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2406,12 +2553,15 @@ Checking test 044 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 044 fv3_ccpp_gfs_v16_restart PASS +[0] The total amount of wall time = 66.386939 + +Test 045 fv3_ccpp_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_stochy_prod -Checking test 045 fv3_ccpp_gfs_v16_stochy results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_stochy_prod +Checking test 046 fv3_ccpp_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2474,12 +2624,15 @@ Checking test 045 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 045 fv3_ccpp_gfs_v16_stochy PASS +[0] The total amount of wall time = 59.471855 + +Test 046 fv3_ccpp_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_RRTMGP_prod +Checking test 047 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2542,12 +2695,15 @@ Checking test 046 fv3_ccpp_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 046 fv3_ccpp_gfs_v15p2_RRTMGP PASS + +[0] The total amount of wall time = 175.824391 + +Test 047 fv3_ccpp_gfs_v15p2_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_prod +Checking test 048 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2610,12 +2766,15 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 047 fv3_ccpp_gfs_v16_RRTMGP PASS + +[0] The total amount of wall time = 178.091322 + +Test 048 fv3_ccpp_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod +Checking test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2672,12 +2831,86 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +[0] The total amount of wall time = 756.150922 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... +Test 049 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod +Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + +[0] The total amount of wall time = 165.445358 + +Test 050 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_csawmg_prod +Checking test 051 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2720,12 +2953,15 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_ccpp_gfsv16_csawmg PASS +[0] The total amount of wall time = 142.203987 + +Test 051 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 052 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2768,12 +3004,15 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_ccpp_gfsv16_csawmgt PASS + +[0] The total amount of wall time = 140.422558 + +Test 052 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gocart_clm_prod +Checking test 053 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2816,12 +3055,15 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_ccpp_gocart_clm PASS + +[0] The total amount of wall time = 58.333771 + +Test 053 fv3_ccpp_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_flake_prod +Checking test 054 fv3_ccpp_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2884,12 +3126,15 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_ccpp_gfs_v16_flake PASS +[0] The total amount of wall time = 105.620445 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +Test 054 fv3_ccpp_gfs_v16_flake PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_HAFS_v0_hwrf_thompson_prod +Checking test 055 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2952,12 +3197,15 @@ Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +[0] The total amount of wall time = 173.530690 + +Test 055 fv3_ccpp_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod +Checking test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2970,12 +3218,15 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +[0] The total amount of wall time = 317.455085 + +Test 056 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_prod +Checking test 057 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3032,12 +3283,15 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS + +[0] The total amount of wall time = 197.918400 + +Test 057 fv3_ccpp_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod +Checking test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3094,12 +3348,15 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS + +[0] The total amount of wall time = 197.401325 + +Test 058 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 059 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3162,12 +3419,15 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_ccpp_gfs_v15p2_debug PASS +[0] The total amount of wall time = 260.548556 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... +Test 059 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_debug_prod +Checking test 060 fv3_ccpp_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3230,12 +3490,15 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_ccpp_gfs_v16_debug PASS +[0] The total amount of wall time = 203.248959 + +Test 060 fv3_ccpp_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod +Checking test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3298,12 +3561,15 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +[0] The total amount of wall time = 410.527748 + +Test 061 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfs_v16_RRTMGP_debug_prod +Checking test 062 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3366,23 +3632,29 @@ Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS + +[0] The total amount of wall time = 416.985777 + +Test 062 fv3_ccpp_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_regional_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_regional_control_debug_prod -Checking test 061 fv3_ccpp_regional_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_regional_control_debug_prod +Checking test 063 fv3_ccpp_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 061 fv3_ccpp_regional_control_debug PASS + +[0] The total amount of wall time = 396.967541 + +Test 063 fv3_ccpp_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_control_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_control_debug_prod -Checking test 062 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_control_debug_prod +Checking test 064 fv3_ccpp_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3407,12 +3679,15 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile4.nc .........OK Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -Test 062 fv3_ccpp_control_debug PASS +[0] The total amount of wall time = 158.947916 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_stretched_nest_debug_prod -Checking test 063 fv3_ccpp_stretched_nest_debug results .... +Test 064 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_stretched_nest_debug_prod +Checking test 065 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3427,12 +3702,15 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile4.nc .........OK Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -Test 063 fv3_ccpp_stretched_nest_debug PASS +[0] The total amount of wall time = 469.286389 + +Test 065 fv3_ccpp_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_debug_prod -Checking test 064 fv3_ccpp_gsd_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_debug_prod +Checking test 066 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3495,12 +3773,15 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_ccpp_gsd_debug PASS +[0] The total amount of wall time = 233.573521 + +Test 066 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gsd_diag3d_debug_prod +Checking test 067 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3563,12 +3844,15 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_ccpp_gsd_diag3d_debug PASS + +[0] The total amount of wall time = 307.798202 + +Test 067 fv3_ccpp_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_debug_prod -Checking test 066 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_debug_prod +Checking test 068 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3631,12 +3915,15 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 066 fv3_ccpp_thompson_debug PASS + +[0] The total amount of wall time = 389.542056 + +Test 068 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 069 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3699,12 +3986,15 @@ Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 067 fv3_ccpp_thompson_no_aero_debug PASS +[0] The total amount of wall time = 375.403940 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... +Test 069 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_rrfs_v1beta_debug_prod +Checking test 070 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3767,12 +4057,15 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 068 fv3_ccpp_rrfs_v1beta_debug PASS +[0] The total amount of wall time = 226.258341 + +Test 070 fv3_ccpp_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod +Checking test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3835,12 +4128,15 @@ Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +[0] The total amount of wall time = 237.111319 + +Test 071 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod +Checking test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3853,12 +4149,15 @@ Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS + +[0] The total amount of wall time = 429.285809 + +Test 072 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/fv3_ccpp_gfsv16_ugwpv1_debug_prod +Checking test 073 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3915,12 +4214,15 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS + +[0] The total amount of wall time = 645.867642 + +Test 073 fv3_ccpp_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_prod -Checking test 072 cpld_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_prod +Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -3968,12 +4270,15 @@ Checking test 072 cpld_control results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 072 cpld_control PASS +[0] The total amount of wall time = 109.719107 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_prod -Checking test 073 cpld_restart results .... +Test 074 cpld_control PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_prod +Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4021,12 +4326,15 @@ Checking test 073 cpld_restart results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 073 cpld_restart PASS +[0] The total amount of wall time = 70.051137 + +Test 075 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_prod -Checking test 074 cpld_controlfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_prod +Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4074,12 +4382,15 @@ Checking test 074 cpld_controlfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 074 cpld_controlfrac PASS +[0] The total amount of wall time = 109.284327 + +Test 076 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_prod -Checking test 075 cpld_restartfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_prod +Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4127,12 +4438,15 @@ Checking test 075 cpld_restartfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 075 cpld_restartfrac PASS + +[0] The total amount of wall time = 69.098664 + +Test 077 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_2threads_prod -Checking test 076 cpld_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_2threads_prod +Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4180,12 +4494,15 @@ Checking test 076 cpld_2threads results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 076 cpld_2threads PASS + +[0] The total amount of wall time = 98.525705 + +Test 078 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_decomp_prod -Checking test 077 cpld_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_decomp_prod +Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4233,12 +4550,15 @@ Checking test 077 cpld_decomp results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 077 cpld_decomp PASS +[0] The total amount of wall time = 106.535856 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_satmedmf_prod -Checking test 078 cpld_satmedmf results .... +Test 079 cpld_decomp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_satmedmf_prod +Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4286,12 +4606,15 @@ Checking test 078 cpld_satmedmf results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 078 cpld_satmedmf PASS +[0] The total amount of wall time = 104.276542 + +Test 080 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_ca_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_ca_prod -Checking test 079 cpld_ca results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_ca_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_ca_prod +Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4339,12 +4662,15 @@ Checking test 079 cpld_ca results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 079 cpld_ca PASS +[0] The total amount of wall time = 105.530333 + +Test 081 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c192_prod -Checking test 080 cpld_control_c192 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_c192_prod +Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4392,12 +4718,15 @@ Checking test 080 cpld_control_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 080 cpld_control_c192 PASS +[0] The total amount of wall time = 428.275145 + +Test 082 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c192_prod -Checking test 081 cpld_restart_c192 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_c192_prod +Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4445,12 +4774,15 @@ Checking test 081 cpld_restart_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 081 cpld_restart_c192 PASS +[0] The total amount of wall time = 323.332241 + +Test 083 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c192_prod -Checking test 082 cpld_controlfrac_c192 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_c192_prod +Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4498,12 +4830,15 @@ Checking test 082 cpld_controlfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 082 cpld_controlfrac_c192 PASS + +[0] The total amount of wall time = 424.905236 + +Test 084 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c192_prod -Checking test 083 cpld_restartfrac_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c192_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_c192_prod +Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4551,12 +4886,15 @@ Checking test 083 cpld_restartfrac_c192 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -Test 083 cpld_restartfrac_c192 PASS + +[0] The total amount of wall time = 320.351215 + +Test 085 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_c384_prod -Checking test 084 cpld_control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_c384_prod +Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4607,12 +4945,15 @@ Checking test 084 cpld_control_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 084 cpld_control_c384 PASS +[0] The total amount of wall time = 1486.372821 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_c384_prod -Checking test 085 cpld_restart_c384 results .... +Test 086 cpld_control_c384 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_c384_prod +Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4663,12 +5004,15 @@ Checking test 085 cpld_restart_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 085 cpld_restart_c384 PASS +[0] The total amount of wall time = 813.507268 + +Test 087 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_controlfrac_c384_prod -Checking test 086 cpld_controlfrac_c384 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_controlfrac_c384_prod +Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4719,12 +5063,15 @@ Checking test 086 cpld_controlfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 086 cpld_controlfrac_c384 PASS +[0] The total amount of wall time = 1482.076509 + +Test 088 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_controlfrac_c384_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restartfrac_c384_prod -Checking test 087 cpld_restartfrac_c384 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_controlfrac_c384_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restartfrac_c384_prod +Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4775,12 +5122,15 @@ Checking test 087 cpld_restartfrac_c384 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -Test 087 cpld_restartfrac_c384 PASS + +[0] The total amount of wall time = 813.606606 + +Test 089 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_prod -Checking test 088 cpld_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmark_prod +Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4831,12 +5181,15 @@ Checking test 088 cpld_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 088 cpld_bmark PASS + +[0] The total amount of wall time = 909.086334 + +Test 090 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmark_prod -Checking test 089 cpld_restart_bmark results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmark_prod +Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4887,12 +5240,15 @@ Checking test 089 cpld_restart_bmark results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 089 cpld_restart_bmark PASS +[0] The total amount of wall time = 539.380482 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_prod -Checking test 090 cpld_bmarkfrac results .... +Test 091 cpld_restart_bmark PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_prod +Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4943,12 +5299,15 @@ Checking test 090 cpld_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 090 cpld_bmarkfrac PASS +[0] The total amount of wall time = 898.631878 + +Test 092 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_prod -Checking test 091 cpld_restart_bmarkfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmarkfrac_prod +Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4999,12 +5358,15 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 091 cpld_restart_bmarkfrac PASS +[0] The total amount of wall time = 544.158349 + +Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_v16_prod -Checking test 092 cpld_bmarkfrac_v16 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_v16_prod +Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5055,12 +5417,15 @@ Checking test 092 cpld_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 092 cpld_bmarkfrac_v16 PASS + +[0] The total amount of wall time = 1563.309967 + +Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_restart_bmarkfrac_v16_prod -Checking test 093 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_restart_bmarkfrac_v16_prod +Checking test 095 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5111,12 +5476,15 @@ Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 093 cpld_restart_bmarkfrac_v16 PASS + +[0] The total amount of wall time = 909.566357 + +Test 095 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmark_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmark_wave_prod -Checking test 094 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmark_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmark_wave_prod +Checking test 096 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5170,12 +5538,15 @@ Checking test 094 cpld_bmark_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 094 cpld_bmark_wave PASS +[0] The total amount of wall time = 1555.677848 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_prod -Checking test 095 cpld_bmarkfrac_wave results .... +Test 096 cpld_bmark_wave PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_wave_prod +Checking test 097 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5229,27 +5600,29 @@ Checking test 095 cpld_bmarkfrac_wave results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -Test 095 cpld_bmarkfrac_wave PASS +[0] The total amount of wall time = 1595.340933 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_bmarkfrac_wave_v16_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_bmarkfrac_wave_v16_prod -Checking test 096 cpld_bmarkfrac_wave_v16 results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing 20130401.120000.out_grd.gwes_30m .........OK - Comparing 20130401.120000.out_pnt.points .........OK - Comparing 20130401.120000.restart.gwes_30m .........OK +Test 097 cpld_bmarkfrac_wave PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_bmarkfrac_wave_v16_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_bmarkfrac_wave_v16_prod +Checking test 098 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5286,14 +5659,17 @@ Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -Test 096 cpld_bmarkfrac_wave_v16 PASS + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK +[0] The total amount of wall time = 1080.328155 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_control_wave_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_control_wave_prod -Checking test 097 cpld_control_wave results .... +Test 098 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_control_wave_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_control_wave_prod +Checking test 099 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5344,12 +5720,15 @@ Checking test 097 cpld_control_wave results .... Comparing 20161004.000000.out_grd.glo_1deg .........OK Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -Test 097 cpld_control_wave PASS +[0] The total amount of wall time = 869.599664 + +Test 099 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debug_prod -Checking test 098 cpld_debug results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debug_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_debug_prod +Checking test 100 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5397,12 +5776,15 @@ Checking test 098 cpld_debug results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 098 cpld_debug PASS +[0] The total amount of wall time = 334.866020 + +Test 100 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/cpld_debugfrac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/cpld_debugfrac_prod -Checking test 099 cpld_debugfrac results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/cpld_debugfrac_ccpp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/cpld_debugfrac_prod +Checking test 101 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5450,87 +5832,114 @@ Checking test 099 cpld_debugfrac results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -Test 099 cpld_debugfrac PASS + +[0] The total amount of wall time = 333.134213 + +Test 101 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_cfsr -Checking test 100 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_control_cfsr +Checking test 102 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 100 datm_control_cfsr PASS + +[0] The total amount of wall time = 114.676823 + +Test 102 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_restart_cfsr -Checking test 101 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_restart_cfsr +Checking test 103 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 101 datm_restart_cfsr PASS +[0] The total amount of wall time = 79.119218 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_control_gefs -Checking test 102 datm_control_gefs results .... +Test 103 datm_restart_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_control_gefs +Checking test 104 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 102 datm_control_gefs PASS +[0] The total amount of wall time = 105.406199 + +Test 104 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_cfsr -Checking test 103 datm_bulk_cfsr results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_bulk_cfsr +Checking test 105 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 103 datm_bulk_cfsr PASS +[0] The total amount of wall time = 109.256390 + +Test 105 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_bulk_gefs -Checking test 104 datm_bulk_gefs results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_bulk_gefs +Checking test 106 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 104 datm_bulk_gefs PASS + +[0] The total amount of wall time = 107.763318 + +Test 106 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_cfsr -Checking test 105 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_mx025_cfsr +Checking test 107 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 105 datm_mx025_cfsr PASS + +[0] The total amount of wall time = 409.787142 + +Test 107 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_mx025_gefs -Checking test 106 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_mx025_gefs +Checking test 108 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 106 datm_mx025_gefs PASS +[0] The total amount of wall time = 407.007046 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210217/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_133624/datm_debug_cfsr -Checking test 107 datm_debug_cfsr results .... +Test 108 datm_mx025_gefs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_18040/datm_debug_cfsr +Checking test 109 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -Test 107 datm_debug_cfsr PASS + +[0] The total amount of wall time = 315.039480 + +Test 109 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 19 05:44:09 UTC 2021 -Elapsed time: 08h:19m:22s. Have a nice day! +Mon Mar 15 19:23:17 UTC 2021 +Elapsed time: 04h:13m:43s. Have a nice day! diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py new file mode 100644 index 000000000..5e0859531 --- /dev/null +++ b/tests/auto/rt_auto.py @@ -0,0 +1,333 @@ +"""Automation of UFS Regression Testing + +This script automates the process of UFS regression testing for code managers +at NOAA-EMC + +This script should be started through rt_auto.sh so that env vars are set up +prior to start. +""" +from github import Github as gh +import argparse +import datetime +import subprocess +import re +import os +import logging + +class GHInterface: + ''' + This class stores information for communicating with GitHub + ... + + Attributes + ---------- + GHACCESSTOKEN : str + API token to autheticate with GitHub + client : pyGitHub communication object + The connection to GitHub to make API requests + ''' + def __init__(self): + self.logger = logging.getLogger('GHINTERFACE') + try: + self.client = gh(os.getenv('ghapitoken')) + except Exception as e: + self.logger.critical(f'Exception is {e}') + raise(e) + +def parse_args_in(): + ''' Parse all input arguments coming from rt_auto.sh ''' + logger = logging.getLogger('PARSE_ARGS_IN') + # Create Parse + parser = argparse.ArgumentParser() + + # Setup Input Arguments + choices = ['cheyenne', 'hera', 'orion', 'gaea', 'jet', 'wcoss_dell_p3'] + parser.add_argument('-m', '--machine', help='Machine name', required=True, choices=choices, type=str) + parser.add_argument('-w', '--workdir', help='Working directory', required=True, type=str) + + # Get Arguments + args = parser.parse_args() + + return args + +def input_data(args): + ''' Create dictionaries of data needed for processing UFS pull requests ''' + logger = logging.getLogger('INPUT_DATA') + machine_dict = { + 'name': args.machine, + 'workdir': args.workdir + } + repo_list_dict = [{ + 'name': 'ufs-weather-model', + 'address': 'ufs-community/ufs-weather-model', + 'base': 'develop' + }] + action_list_dict = [{ + 'name': 'RT', + 'callback_fnc': 'rt_callback' + }, + { + 'name': 'BL', + 'callback_fnc': 'bl_callback' + }] + + return machine_dict, repo_list_dict, action_list_dict + +def set_action_from_label(machine, actions, label): + ''' Match the label that initiates a job with an action in the dict''' + # -- i.e. hera-gnu-RT + # RT = full regression test suite + logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') + split_label = label.name.split('-') + if len(split_label) != 3: return False, False #Make sure it has three parts + label_machine = split_label[0] + label_compiler = split_label[1] + label_action = split_label[2] + if not re.match(label_machine, machine['name']): return False, False #check machine name matches + if not str(label_compiler) in ["intel", "gnu"]: return False, False #Compiler must be intel or gnu + action_match = next((action for action in actions if re.match(action['name'], label_action)), False) + if label_action == 'RT': # SET ACTIONS BASED ON RT COMMAND + if label_compiler == "intel": + action_match["command"] = f'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e' + elif label_compiler == "gnu": + action_match["command"] = f'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -l rt_gnu.conf' + elif label_action == 'BL': # SET ACTIONS BASED ON BL COMMAND + if label_compiler == "intel": + action_match["command"] = f'export RT_COMPILER="intel" && cd tests && /bin/bash --login ./rt.sh -e -c' + elif label_compiler == "gnu": + action_match["command"] = f'export RT_COMPILER="gnu" && cd tests && /bin/bash --login ./rt.sh -e -c -l rt_gnu.conf' + + return label_compiler, action_match + + +def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): + ''' Create list of dictionaries of a pull request and its machine label and action ''' + logger = logging.getLogger('GET_PREQS_WITH_ACTIONS') + gh_preqs = [ghinterface_obj.client.get_repo(repo['address']).get_pulls(state='open', sort='created', base=repo['base']) for repo in repos] + each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] + preq_labels = [{'preq': pr, 'label': label} for pr in each_pr for label in pr.get_labels()] + + return_preq = [] + for pr_label in preq_labels: + compiler, match = set_action_from_label(machine, actions, pr_label['label']) + if match: + pr_label['action'] = match.copy() + pr_label['compiler'] = compiler + return_preq.append(pr_label.copy()) + + return return_preq + +class Job: + ''' + This class stores all information needed to run jobs on this machine. + This class provides all methods needed to run all jobs. + ... + + Attributes + ---------- + preq_dict: dict + Dictionary of all data that comes from the GitHub pull request + ghinterface_obj: object + An interface to GitHub setup through class GHInterface + machine: dict + Information about the machine the jobs will be running on + provided by the bash script + ''' + + def __init__(self, preq_dict, ghinterface_obj, machine): + self.logger = logging.getLogger('JOB') + self.preq_dict = preq_dict + self.ghinterface_obj = ghinterface_obj + self.machine = machine + + def remove_pr_label(self): + ''' Removes the pull request label that initiated the job run from PR ''' + self.logger.info(f'Removing Label: {self.preq_dict["label"]}') + self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) + + def check_label_before_job_start(self): + # LETS Check the label still exists before the start of the job in the + # case of multiple jobs + label_to_check = f'{self.machine["name"]}-{self.preq_dict["compiler"]}-{self.preq_dict["action"]["name"]}' + labels = self.preq_dict['preq'].get_labels() + label_match = next((label for label in labels if re.match(label.name, label_to_check)), False) + + return label_match + + def run_commands(self, commands_with_cwd): + logger = logging.getLogger('JOB/RUN_COMMANDS') + for command, in_cwd in commands_with_cwd: + logger.info(f'Running "{command}" in location "{in_cwd}"') + try: + output = subprocess.Popen(command, shell=True, cwd=in_cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + out, err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + err = [] if not err else err.decode('utf8').split('\n') + except Exception as e: + self.job_failed(logger, f'Command {command}', exception=e, out=out, err=err) + else: + logger.info(f'Finished running: {command}') + [logger.debug(f'stdout: {item}') for item in out if not None] + + def remove_pr_data(self): + logger = logging.getLogger('JOB/REMOVE_PR_DATA') + pr_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}' + rm_command = [ + [f'rm -rf {self.rt_dir}', self.pr_repo_loc], + [f'rm -rf {pr_dir_str}', self.pr_repo_loc] + ] + logger.info(f'Running "{rm_command}"') + self.run_commands(rm_command) + + def clone_pr_repo(self): + ''' clone the GitHub pull request repo, via command line ''' + logger = logging.getLogger('JOB/CLONE_PR_REPO') + repo_name = self.preq_dict['preq'].head.repo.name + self.branch = self.preq_dict['preq'].head.ref + git_url = self.preq_dict['preq'].head.repo.html_url.split('//') + git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' + logger.info(f'GIT URL: {git_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{self.machine["workdir"]}/{str(self.preq_dict["preq"].id)}/{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + self.pr_repo_loc = repo_dir_str+"/"+repo_name + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', self.machine['workdir']], + [f'git clone -b {self.branch} {git_url}', repo_dir_str], + [f'git submodule update --init --recursive', f'{repo_dir_str}/{repo_name}'] + ] + + self.run_commands(create_repo_commands) + + logger.info('Finished repo clone') + return self.pr_repo_loc + + def execute_command(self): + ''' Run the command associted with the label used to initiate this job ''' + logger = logging.getLogger('JOB/EXECUTE_COMMAND') + compiler = self.preq_dict['compiler'] + logger.info(f'Compiler being used for command is {compiler}') + command = self.preq_dict["action"]["command"] + + try: + logger.info(f'Running: "{command}" in "{self.pr_repo_loc}"') + output = subprocess.Popen(command, cwd=self.pr_repo_loc, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) + out,err = output.communicate() + except Exception as e: + out = [] if not out else out.decode('utf8').split('\n') + err = [] if not err else err.decode('utf8').split('\n') + self.job_failed(logger, f'Command {command}', exception=e, out=out, err=err) + else: + if output.returncode != 0: + self.job_failed(logger, "Script rt.sh", exception=SystemExit, STDOUT=False) + else: + try: + logger.info(f'Attempting to run callback: {self.preq_dict["action"]["callback_fnc"]}') + getattr(self, self.preq_dict['action']['callback_fnc'])() + except Exception as e: + self.job_failed(logger, f'Callback function {self.preq_dict["action"]["callback_fnc"]}', exception=e, STDOUT=False) + else: + logger.info(f'Finished callback {self.preq_dict["action"]["callback_fnc"]}') + [logger.debug(f'stdout: {item}') for item in out if not None] + + def run(self): + logger = logging.getLogger('JOB/RUN') + logger.info(f'Starting Job: {self.preq_dict["label"]}') + if self.check_label_before_job_start(): + try: + logger.info('Calling remove_pr_label') + self.remove_pr_label() + logger.info('Calling clone_pr_repo') + self.clone_pr_repo() + logger.info('Calling execute_command') + self.execute_command() + except Exception as e: + self.job_failed(logger, f'run()', exception=e, STDOUT=False) + else: + logger.info(f'Cannot find label {self.preq_dict["label"]}') + + def job_failed(self, logger, job_name, exception=Exception, STDOUT=True, out=None, err=None): + comment_text = f'{job_name} FAILED \n'\ + f'Repo location: {self.pr_repo_loc} \n'\ + f'Machine: {self.machine["name"]} \n'\ + f'Compiler: {self.preq_dict["compiler"]} \n' + if STDOUT: + comment_text=comment_text+'\n'\ + f'STDOUT: {[item for item in out if not None]} \n'\ + f'STDERR: {[eitem for eitem in err if not None]} \n' + comment_text = comment_text+'Please make changes and add the following label back: '\ + f'{self.machine["name"]}-{self.preq_dict["compiler"]}-{self.preq_dict["action"]["name"]}' + logger.critical(comment_text) + self.preq_dict['preq'].create_issue_comment(comment_text) + raise exception + + def process_logfile(self, logfile): + self.rt_dir = [] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if 'working dir' in line and not self.rt_dir: + self.rt_dir = os.path.split(line.split()[-1])[0] + elif 'SUCCESSFUL' in line: + return True + self.job_failed(logger, "Regression Tests", STDOUT=False) + else: + logger.critical(f'Could not find {self.machine["name"]}.{self.preq_dict["compiler"]} RT log') + raise FileNotFoundError(f'Could not find {self.machine["name"]}.{self.preq_dict["compiler"]} RT log') + + # Add Callback Functions After Here + def rt_callback(self): + ''' This is the callback function associated with the "RT" command ''' + logger = logging.getLogger('JOB/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{self.machine["name"]}.{self.preq_dict["compiler"]}.log' + filepath = f'{self.pr_repo_loc}/{rt_log}' + logfile_pass = self.process_logfile(filepath) + if logfile_pass: + move_rt_commands = [ + [f'git pull --ff-only origin {self.branch}', self.pr_repo_loc], + [f'git add {rt_log}', self.pr_repo_loc], + [f'git commit -m "PASSED: {self.machine["name"]}.{self.preq_dict["compiler"]}. Log file uploaded. skip-ci"', self.pr_repo_loc], + ['sleep 10', self.pr_repo_loc], + [f'git push origin {self.branch}', self.pr_repo_loc] + ] + self.run_commands(move_rt_commands) + self.remove_pr_data() + + def bl_callback(self): + pass + +def main(): + + # handle logging + log_path = os.getcwd() + log_filename = f'rt_auto_{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + # Please don't run the following on cron with level=logging.DEBUG + # as it exposes the GH API Token + # Only set it to DEBUG while debugging + logging.basicConfig(filename=log_filename, filemode='w', level=logging.INFO) + logger = logging.getLogger('MAIN') + logger.info('Starting Script') + # handle input args + logger.info('Parsing input args') + args = parse_args_in() + + # get input data + logger.info('Calling input_data().') + machine, repos, actions = input_data(args) + + # setup interface with GitHub + logger.info('Setting up GitHub interface.') + ghinterface_obj = GHInterface() + + # get all pull requests from the GitHub object + logger.info('Getting all pull requests, labels and actions applicable to this machine.') + preq_dict = get_preqs_with_actions(repos, machine, ghinterface_obj, actions) + # add Job objects and run them + logger.info('Adding all jobs to an object list and running them.') + jobs = [Job(pullreq, ghinterface_obj, machine) for pullreq in preq_dict] + [job.run() for job in jobs] + + logger.info('Script Finished') + + +if __name__ == '__main__': + main() diff --git a/tests/auto/rt_auto.sh b/tests/auto/rt_auto.sh new file mode 100644 index 000000000..17d7e6ff0 --- /dev/null +++ b/tests/auto/rt_auto.sh @@ -0,0 +1,53 @@ +#!/bin/bash --login +set -eux +if [ -f "accesstoken.sh" ]; then + if [ $(stat -L -c "%a" "accesstoken.sh") == "600" ]; then + echo "Sourcing accesstoken.sh" + source ./accesstoken.sh + else + echo "accesstoken.sh permissions NEED to be set to 600 before starting" + exit 1 + fi +else + echo "Please create accesstoken.sh (600) with the following content\n" + echo "export ghapitoken=" + exit 1 +fi + +if [[ $HOSTNAME == hfe* ]]; then + MACHINE_NAME=hera + WORKDIR=/scratch1/NCEPDEV/nems/Brian.Curtis/test + export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $HOSTNAME == Orion-login-* ]]; then + MACHINE_NAME=orion + WORKDIR=/work/noaa/nems/bcurtis/test + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $HOSTNAME == fe* ]]; then + MACHINE_NAME=jet + WORKDIR=/lfs4/HFIP/h-nems/Brian.Curtis/test + export ACCNR="h-nems" + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages +elif [[ $HOSTNAME == gaea* ]]; then + MACHINE_NAME=gaea + WORKDIR=/lustre/f2/pdata/ncep/Brian.Curtis/test + export LOADEDMODULES=$LOADEDMODULES + export ACCNR="nggps_emc" # This applies to Brian.Curtis, may need change later + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages +elif [[ $HOSTNAME == *.cheyenne.ucar.edu ]]; then + MACHINE_NAME=cheyenne + WORKDIR=/glade/work/heinzell/fv3/ufs-weather-model/auto-rt + export ACCNR="P48503002" + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages +else + echo "No Python Path for this machine. automated RT not starting" + exit 1 +fi + +python rt_auto.py -m $MACHINE_NAME -w $WORKDIR + +exit 0 diff --git a/tests/ci/build_status_check.py b/tests/ci/build_status_check.py new file mode 100755 index 000000000..0f84cc38f --- /dev/null +++ b/tests/ci/build_status_check.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python3 + +import re +import sys +import json +import time +from urllib.request import urlopen + +def update_url_data(response): + data = json.loads(response.read().decode()) + indices=[] + for n in range(data["total_count"]): + if re.search("Build", data["jobs"][n]["name"]): + indices.append(n) + + if len(indices) == 0: + raise ValueError("No build job exists.") + + return data, indices + +def main(): + + time.sleep(40) + url = json.load(sys.stdin)["workflow_run"]["jobs_url"] + + status="not-completed" + no_completed_jobs = 0 + + while status != "completed": + response = urlopen(url) + data, indices = update_url_data(response) + + for i in indices: + if data["jobs"][i]["status"] == "completed": + no_completed_jobs += 1 + + if no_completed_jobs == len(indices): + status = "completed" + else: + no_completed_jobs = 0 + time.sleep(40) + + time.sleep(40) + conclusion="failure" + no_successful_jobs = 0 + for i in indices: + if data["jobs"][i]["conclusion"] == "success": + no_successful_jobs += 1 + + if no_successful_jobs == len(indices): + conclusion = "success" + + print(conclusion) + +if __name__ == "__main__": main() diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index f9af49440..bcb90f2ae 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -72,15 +72,15 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then - sudo docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:input-data-20210115 - sudo docker run -d -e test_case=${TEST_CASE} -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210115 --name my-container ${IMG_NAME} + docker run -d --rm -v DataVolume:/tmp minsukjinoaa/fv3-input-data:input-data-20210115 + docker run -d -e test_case=${TEST_CASE} --shm-size=512m -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210115 --name my-container ${IMG_NAME} echo 'cache,rss,shmem' >memory_stat sleep 3 - containerID=$(sudo docker ps -q --no-trunc) + containerID=$(docker ps -q --no-trunc) check_memory_usage $containerID >>memory_stat & - sudo docker logs -f $containerID - exit $(sudo docker inspect $containerID --format='{{.State.ExitCode}}') + docker logs -f $containerID + exit $(docker inspect $containerID --format='{{.State.ExitCode}}') fi diff --git a/tests/ci/ci.test b/tests/ci/ci.test index c414f778c..c1ebb3278 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,3 +1,3 @@ fv3_ccpp_control -rst bit +thr mpi dcp rst bit dbg ci-test-weather diff --git a/tests/ci/json_helper.py b/tests/ci/json_helper.py index cc4fd4f32..80bdfff95 100755 --- a/tests/ci/json_helper.py +++ b/tests/ci/json_helper.py @@ -6,9 +6,9 @@ import sys import json -def check_skip(data): +def check_run(data): msg = data["head_commit"]["message"] - if re.search("skip-ci", msg): + if re.search("run-ci", msg): return "yes" else: return "no" @@ -19,15 +19,16 @@ def cancel_workflow(data): x["id"]!=int(os.environ["GITHUB_RUN_ID"]) and x["id"]!=int(os.environ["TRIGGER_ID"]) and x["head_branch"]==os.environ["TRIGGER_BR"] and + x["event"]!="workflow_run" and (x["status"]=="queued" or x["status"]=="in_progress")] return wfs def main(): - if sys.argv[1]=="check_skip": + if sys.argv[1]=="check_run": data = json.load(sys.stdin)["workflow_run"] - ans = check_skip(data) + ans = check_run(data) print(ans) elif sys.argv[1]=="get_trigger_id": print(json.load(sys.stdin)["workflow_run"]["id"]) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 3820f6869..8dffe79b7 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -146,7 +146,7 @@ elif [[ $MACHINE_ID = hera.* ]]; then elif [[ $MACHINE_ID = linux.* ]]; then if [[ $CI_TEST = true ]]; then - TASKS_dflt=12 ; TPN_dflt=16 ; INPES_dflt=1 ; JNPES_dflt=1 + TASKS_dflt=42 ; TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=2 else TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 fi @@ -320,6 +320,7 @@ export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 export OUTPUT_HISTORY=.true. export WRITE_DOPOST=.false. +export POSTAPP='' export NUM_FILES=2 export FILENAME_BASE="'dyn' 'phy'" export OUTPUT_GRID="'cubed_sphere_grid'" @@ -399,6 +400,8 @@ export LSM=1 export LSOIL_LSM=4 export LANDICE=.T. export KICE=2 +export IALB=1 +export IEMS=1 # Ozone / stratospheric H2O export OZ_PHYS_OLD=.T. @@ -533,6 +536,7 @@ export FRAC_GRID_INPUT='.T.' export SUITE_NAME="FV3_GFS_2017_coupled" export INPUT_NML=input.mom6_ccpp.nml.IN export FIELD_TABLE="field_table" +export DIAG_TABLE="diag_table_template" export FHROT='0' export NSOUT='-1' @@ -547,7 +551,10 @@ export CPL='.true.' export NSTF_NAME='0,0,0,0,0' export DZ_MIN='2' +export PSM_BC='0' export MIN_SEAICE='1.0e-11' +export DDDMP='0.1' +export FSICL='99999' # resolution dependent settings export CDMBWD_c96='0.14,1.8,1.0,1.0' @@ -677,6 +684,7 @@ export flux_scheme='0' export INPUT_NML=input.mom6.nml.IN export MODEL_CONFIGURE=datm_configure.IN export FIELD_TABLE="field_table" +export DIAG_TABLE="diag_table_template" # MOM6 defaults; 1 degree export MOM_INPUT=MOM_input_template_100 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index c4bea08a2..0356b38bc 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -88,6 +88,12 @@ case $(hostname -f) in cheyenne4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne4 cheyenne5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne5 cheyenne6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne6 + chadmin1.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin2.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin3.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin4.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin5.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 + chadmin6.ib0.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 login1.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1 login2.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede2 diff --git a/tests/fv3_conf/ccpp_gf_thompson_run.IN b/tests/fv3_conf/ccpp_gf_thompson_run.IN index 91ccdb55a..5d2112adb 100644 --- a/tests/fv3_conf/ccpp_gf_thompson_run.IN +++ b/tests/fv3_conf/ccpp_gf_thompson_run.IN @@ -28,3 +28,4 @@ if [[ $MACHINE_ID = cheyenne.* ]]; then else cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . fi + diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index 1a2fbeae9..af0e3d5f8 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -40,3 +40,10 @@ if [ $CPLWAV = .T. ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . cp @[INPUTDATA_ROOT_WW3]/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi + +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/post_itag itag + cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index 230793b29..5da65b019 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -75,3 +75,4 @@ if [[ $MACHINE_ID = cheyenne.* ]]; then else cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . fi + diff --git a/tests/fv3_conf/ccpp_gsd_sar_run.IN b/tests/fv3_conf/ccpp_gsd_sar_run.IN index b9eed6e73..03f713aae 100644 --- a/tests/fv3_conf/ccpp_gsd_sar_run.IN +++ b/tests/fv3_conf/ccpp_gsd_sar_run.IN @@ -30,3 +30,4 @@ if [[ $MACHINE_ID = cheyenne.* ]]; then else cp /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/tmp_input_data_thompson_update_20210304/* . fi + diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index 3bac0cd50..6e3dfb964 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -1,5 +1,7 @@ rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . -rsync -arv @[INPUTDATA_ROOT]/@[INPUT_DIR]/model_configure . +if [ $WRITE_DOPOST = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_regional_input_data/diag_table_lam ./diag_table +fi rm -rf INPUT RESTART mkdir INPUT RESTART @@ -29,6 +31,18 @@ if [ $H2O_PHYS = .T. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 fi +if [[ $POSTAPP = 'lam' ]]; then + cp ${PATHRT}/parm/post_itag_fv3lam itag + cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +elif [[ $POSTAPP = 'hafs' ]]; then + cp ${PATHRT}/parm/post_itag_hafs itag + cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + # temporary: new Thompson tables if [[ $MACHINE_ID = cheyenne.* ]]; then cp /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/tmp_input_data_thompson_update_20210304/* . diff --git a/tests/fv3_conf/cpld_bmark_run.IN b/tests/fv3_conf/cpld_bmark_run.IN index 443e09fd3..1ecddff75 100644 --- a/tests/fv3_conf/cpld_bmark_run.IN +++ b/tests/fv3_conf/cpld_bmark_run.IN @@ -8,17 +8,13 @@ fi ICERES="${OCNRES:0:1}.${OCNRES:1}" -BM_IC=BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR} if [[ ${FRAC_GRID_INPUT} = .F. ]]; then - FV3_IC=${BM_IC}/gfs/@[ATMRES]/INPUT + FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]/INPUT elif [[ @[NPZ] == '127' ]]; then - FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]_L@[NPZ]/INPUT + FV3_IC=FV3_input_frac/BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]_L@[NPZ]/INPUT else - FV3_IC=FV3_input_frac/${BM_IC}/gfs/@[ATMRES]/INPUT + FV3_IC=FV3_input_frac/BM_IC/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs/@[ATMRES]/INPUT fi -MOM6_IC=${BM_IC}/mom6_da -CICE_IC=${BM_IC}/cpc -WW3_IC=${BM_IC}/ww3 # FV3 fixed input cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT/aerosol.dat . @@ -63,7 +59,7 @@ if [[ $CPLWAV == .T. && $CPLWAV2ATM == .T. ]]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . if [[ $RT35D == .T. ]]; then cp @[INPUTDATA_ROOT_WW3]/ww3_multi_35d.inp ww3_multi.inp - cp @[INPUTDATA_ROOT]/${WW3_IC}/*.000000.restart.gwes_30m ./restart.gwes_30m + cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/ww3/*.000000.restart.gwes_30m ./restart.gwes_30m else cp @[INPUTDATA_ROOT_WW3]/ww3_multi.inp . fi @@ -74,9 +70,9 @@ if [ $WARM_START = .F. ]; then # ICs cp @[INPUTDATA_ROOT]/${FV3_IC}/sfc_data*.nc ./INPUT cp @[INPUTDATA_ROOT]/${FV3_IC}/gfs_data*.nc ./INPUT - cp @[INPUTDATA_ROOT]/${MOM6_IC}/MOM*.nc ./INPUT + cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da/MOM*.nc ./INPUT # the BM ICs are still named cice5 and need to remain so until P5.0 is completed - cp @[INPUTDATA_ROOT]/${CICE_IC}/cice5_model_@[ICERES].*.nc ./cice_model.res.nc + cp @[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc/cice5_model_@[ICERES].*.nc ./cice_model.res.nc else # NOTE: bmark-wave model is not currently tested for restart # Restart files diff --git a/tests/parm/ccpp_gfdlmp.nml.IN b/tests/parm/ccpp_gfdlmp.nml.IN index dac3f5755..3440922ed 100644 --- a/tests/parm/ccpp_gfdlmp.nml.IN +++ b/tests/parm/ccpp_gfdlmp.nml.IN @@ -128,8 +128,8 @@ pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 1 - iems = 1 + ialb = @[IALB] + iems = @[IEMS] IAER = 111 ico2 = 2 isubc_sw = 2 diff --git a/tests/parm/ccpp_gsd.nml.IN b/tests/parm/ccpp_gsd.nml.IN index 0ac2931d7..df71eadb1 100644 --- a/tests/parm/ccpp_gsd.nml.IN +++ b/tests/parm/ccpp_gsd.nml.IN @@ -132,8 +132,8 @@ pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 1 - iems = 1 + ialb = @[IALB] + iems = @[IEMS] iaer = @[IAER] icliq_sw = @[ICLIQ_SW] iovr = @[IOVR] diff --git a/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN index 1eb912490..0d6df1299 100644 --- a/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN +++ b/tests/parm/ccpp_v16_c96_rrtmgp.nml.IN @@ -41,7 +41,7 @@ deflate_level=1 / &fv_core_nml - layout = 3,8 + layout = @[INPES],@[JNPES] io_layout = 1,1 npx = 97 npy = 97 diff --git a/tests/parm/diag_table_benchmark b/tests/parm/diag_table_bmark_template similarity index 100% rename from tests/parm/diag_table_benchmark rename to tests/parm/diag_table_bmark_template diff --git a/tests/parm/diag_table_bmark_v16_template b/tests/parm/diag_table_bmark_v16_template new file mode 100644 index 000000000..a47879cfa --- /dev/null +++ b/tests/parm/diag_table_bmark_v16_template @@ -0,0 +1,270 @@ +YMD.00Z.ATMRES.64bit.non-mono +SYEAR SMONTH SDAY 00 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "1901 1 1 0 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML","ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +#============================================================================================= + +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nccice", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "nconrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cld_amt", "cld_amt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfnh", "presnh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 + +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rainc", "cnvprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index 9490758bc..89623cab9 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -48,6 +48,7 @@ ntiles = 6, npz = @[NPZ] dz_min = @[DZ_MIN] + psm_bc = @[PSM_BC] grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .false. @@ -79,7 +80,7 @@ fv_sg_adj = 450 d2_bg = 0. nord = 2 - dddmp = 0.1 + dddmp = @[DDDMP] d4_bg = 0.12 vtdm4 = 0.02 delt_max = 0.002 @@ -285,7 +286,7 @@ FAISS = 99999 FSNOL = 99999 FSNOS = 99999 - FSICL = 99999 + FSICL = @[FSICL] FSICS = 99999 FTSFL = 99999 FVETL = 99999 diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN new file mode 100755 index 000000000..7458c443e --- /dev/null +++ b/tests/parm/model_configure_hafs.IN @@ -0,0 +1,73 @@ +print_esmf: .true. + +total_member: 1 +PE_MEMBER01: 28 + +start_year: 2018 +start_month: 10 +start_day: 15 +start_hour: 00 +start_minute: 0 +start_second: 0 +nhours_fcst: 24 +RUN_CONTINUE: .false. +ENS_SPS: .false. +dt_atmos: 225 +cpl: .false. +calendar: 'julian' +memuse_verbose: .false. +atmos_nthreads: 1 +use_hyper_thread: .false. +ncores_per_node: 24 +debug_affinity: .true. +restart_interval: 0 +output_1st_tstep_rst: .false. + +quilting: .true. +write_groups: 1 +write_tasks_per_group: 4 +write_dopost: @[WRITE_DOPOST] +num_files: 2 +filename_base: 'dyn' 'phy' +output_file: 'netcdf' +write_nemsioflip: .false. +write_fsyncflag: .false. + +# output_grid: 'gaussian_grid' +# imo: 384 +# jmo: 190 + + output_grid: 'regional_latlon' + lon1: 225.0 + lon2: 300.0 + lat1: 10.0 + lat2: 60.0 + dlon: 0.2 + dlat: 0.2 + +# output_grid: 'rotated_latlon' +# cen_lon: -97.5 # central longitude +# cen_lat: 34.5 # central latitude +# lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) +# lat1: -22.0 # latitude of lower-left . . . . +# lon2: 24.0 # longitude of upper-right . . . . +# lat2: 22.0 # latitude of upper-right . . . . +# dlon: 0.2 +# dlat: 0.2 + +# output_grid: 'lambert_conformal' +# cen_lon: -97.5 # central longitude +# cen_lat: 34.0 # central latitude +# stdlat1: 30.0 +# stdlat2: 60.0 +# nx: 450 # Number of points along x-axis. +# ny: 430 # Number of points along y-axis. +# lon1: -116.0 # longitude of first grid point (lower-left) (in degrees) +# lat1: 13.0 # latitude of first grid point (lower-left) (in degrees) +# dx: 10000.0 # x-direction grid length +# dy: 10000.0 # y-direction grid length + +nfhout: 3 +nfhmax_hf: 12 +nfhout_hf: 1 +nsout: -1 diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN new file mode 100755 index 000000000..50468b7b4 --- /dev/null +++ b/tests/parm/model_configure_regional.IN @@ -0,0 +1,78 @@ +print_esmf: .true. +PE_MEMBER01: @[TASKS] + +start_year: 2018 +start_month: 10 +start_day: 15 +start_hour: 00 +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +RUN_CONTINUE: .false. +ENS_SPS: .false. + +dt_atmos: 225 +cpl: .false. +calendar: 'julian' +memuse_verbose: .false. +atmos_nthreads: 1 +use_hyper_thread: .false. +ncores_per_node: @[TPN] +debug_affinity: .true. +restart_interval: @[RESTART_INTERVAL] +output_1st_tstep_rst: .false. + +quilting: @[QUILTING] +write_groups: 1 +write_tasks_per_group: 4 +write_dopost: @[WRITE_DOPOST] +num_files: 2 +filename_base: 'dyn' 'phy' +output_file: @[OUTPUT_FILE] +ideflate: @[IDEFLATE] +ichunk2d: -1 +jchunk2d: -1 +ichunk3d: -1 +jchunk3d: -1 +kchunk3d: -1 +write_nemsioflip: .false. +write_fsyncflag: .false. + +# output_grid: 'gaussian_grid' +# imo: 384 +# jmo: 190 + +# output_grid: 'regional_latlon' +# lon1: 225.0 +# lon2: 300.0 +# lat1: 10.0 +# lat2: 60.0 +# dlon: 0.2 +# dlat: 0.2 + + output_grid: 'rotated_latlon' + cen_lon: -97.5 # central longitude + cen_lat: 34.5 # central latitude + lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) + lat1: -22.0 # latitude of lower-left . . . . + lon2: 24.0 # longitude of upper-right . . . . + lat2: 22.0 # latitude of upper-right . . . . + dlon: 0.2 + dlat: 0.2 + +# output_grid: 'lambert_conformal' +# cen_lon: -97.5 # central longitude +# cen_lat: 34.0 # central latitude +# stdlat1: 30.0 +# stdlat2: 60.0 +# nx: 450 # Number of points along x-axis. +# ny: 430 # Number of points along y-axis. +# lon1: -116.0 # longitude of first grid point (lower-left) (in degrees) +# lat1: 13.0 # latitude of first grid point (lower-left) (in degrees) +# dx: 10000.0 # x-direction grid length +# dy: 10000.0 # y-direction grid length + +nfhout: 3 +nfhmax_hf: 12 +nfhout_hf: 1 +nsout: -1 diff --git a/tests/parm/post_itag b/tests/parm/post_itag index c9973e56c..9a9a3bdde 100644 --- a/tests/parm/post_itag +++ b/tests/parm/post_itag @@ -1,4 +1,4 @@ &NAMPGB - KPO=57,KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, + KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, / EOF diff --git a/tests/parm/post_itag_fv3lam b/tests/parm/post_itag_fv3lam new file mode 100644 index 000000000..2fe39018b --- /dev/null +++ b/tests/parm/post_itag_fv3lam @@ -0,0 +1,3 @@ + &NAMPGB + KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., + / diff --git a/tests/parm/post_itag_hafs b/tests/parm/post_itag_hafs new file mode 100644 index 000000000..87ad99e6d --- /dev/null +++ b/tests/parm/post_itag_hafs @@ -0,0 +1,4 @@ +&NAMPGB + KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., + / +EOF diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt new file mode 100644 index 000000000..50ab5a850 --- /dev/null +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -0,0 +1,17906 @@ +2 +224 +259 +PRSLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +meso_nam12km +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +3 +POT_ON_HYBRID_LVL +? +1 +tmpl4_0 +POT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +4 +DPT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DPT +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +6 +RH_ON_HYBRID_LVL +? +1 +tmpl4_0 +RH +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +187 +RIME_ON_HYBRID_LVL +? +1 +tmpl4_0 +RIME +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +199 +TCOND_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCOND +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +250 +REFD_ON_HYBRID_LVL +? +1 +tmpl4_0 +REFD +NCEP +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +146 +BMIXL_ON_HYBRID_LVL +? +1 +tmpl4_0 +BMIXL +NCEP +? +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +85 +MCONV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +MCONV +NCEP +? +isobaric_sfc +0 +? +2 +85000. 95000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +10 +20000. 25000. 30000. 40000. 50000. 70000. 75000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +86 +STRM_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +STRM +? +? +isobaric_sfc +0 +? +2 +25000. 50000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +22 +TKE_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TKE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +153 +CLWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +263 +RIME_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RIME +NCEP +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +115 +TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +0 +? +1 +3. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +225 +SOILL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILL +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +36 +SOILM_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILM +? +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +226 +SNFALB_ON_SURFACE +? +1 +tmpl4_0 +SNFALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +227 +MXSALB_ON_SURFACE +? +1 +tmpl4_0 +MXSALB +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +100. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +75 +PLI_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLI +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +160 +INST_CRAIN_ON_SURFACE +? +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +551 +CSNOW_ON_SURFACE +Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +552 +CICEP_ON_SURFACE +Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +553 +CFRZR_ON_SURFACE +Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLWMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +2 +1. 2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +180 +VIS_ON_SURFACE +? +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_CLOUD_TOP +GSD_visibility on cloud top +1 +tmpl4_0 +VIS +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +109 +HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +HGT +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +110 +PRES_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +PRES +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +275 +BRTMP_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +BRTMP +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +430 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical u-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +431 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical v-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +432 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical u-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +433 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical v-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +586 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +576 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +577 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +451 +SPFH_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +SPFH +? +? +spec_alt_above_mean_sea_lvl +0 +? +1 +305. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +578 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +579 +PRES_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +PRES +? +? +spec_hgt_lvl_above_grnd +0 +? +4 +30. 50. 80. 100. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +88 +MCONV_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +MCONV +NCEP +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +90 +VVEL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VVEL +? +? +spec_pres_above_grnd +0 +? +3 +3000. 9000. 18000. +spec_pres_above_grnd +0 +? +3 +0. 6000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +276 +REFZR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +277 +REFZI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFZI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +279 +REFZR_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZR +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +280 +REFZI_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFZI +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +285 +TCLSW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCLSW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +286 +TCOLM_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLM +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +287 +HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +lwst_bot_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +288 +HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +? +1 +tmpl4_0 +HGT +? +? +hghst_top_lvl_of_supercooled_liq_water_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +260 +HGT_ON_CLOUD_CEILING +? +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +290 +SWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +SWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +291 +LWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +292 +AVE_LRGHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LRGHR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +295 +MCONV_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +MCONV +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +296 +TMP_ON_SIGMA_LVL_HPC +? +1 +tmpl4_0 +TMP +? +? +sigma_lvl +1 +4 +5 +9000. 8500. 8000. 7500. 7000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +344 +PBLREG_ON_SURFACE +? +1 +tmpl4_0 +PBLREG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +389 +UGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +UGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +390 +VGRD_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +VGRD +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +RETOP +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +454 +VRATE_ON_PLANETARY_BOUND_LYR +Ventilation Rate on planetary boundary layer +1 +tmpl4_0 +VRATE +NCEP +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +455 +HINDEX_ON_SURFACE +Haines Index on surface +1 +tmpl4_0 +HINDEX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Upward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Downward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +444 +LTNG_ON_SURFACE +lightning +1 +tmpl4_0 +LTNG +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +581 +VIL_ON_ENTIRE_ATMOS +entire atmosphere Vertically Integrated Liquid (kg/m-2) +1 +tmpl4_0 +VIL +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +427 +UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_0 +UPHL +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +NATLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +nmm_8km +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +25000. 50000. 70000. 85000. 95000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +4 +25000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +264 +DZDT_ON_HYBRID_LVL +? +1 +tmpl4_0 +DZDT +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +78 +AVE_LRGHR_ON_HYBRID_LVL +? +1 +tmpl4_8 +LRGHR +NCEP +AVE +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +159 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Upward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_10-100hpa +hourly maximum Downward Vertical Velocity between 10-100hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +890 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_HYBRID1 +Hourly max relative vorticity on hybrid level 1 +1 +tmpl4_8 +RELV +? +MAX +hybrid_lvl +0 +? +1 +1. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +506 +MAX_MAXUW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +U Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +507 +MAX_MAXVW_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +V Component of Hourly Maximum 10m Wind Speed (m/s) +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +MAXREF +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +345 +MAX_TMAX_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMAX +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +346 +MIN_TMIN_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +TMIN +? +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +347 +MAX_MAXRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MAXRH +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +348 +MIN_MINRH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_8 +MINRH +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +4 +2 2 2 2 +4 +0. 10. 40. 100. +depth_bel_land_sfc +4 +2 2 2 2 +4 +10. 40. 100. 200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +36 +SOILM_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILM +? +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +200. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +171 +MSTAV_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +MSTAV +NCEP +? +depth_bel_land_sfc +1 +2 +1 +0. +depth_bel_land_sfc +1 +2 +1 +100. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +115 +TSOIL_ON_DEPTH_BEL_LAND_SFC_3m +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +0 +? +1 +3. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +NCEP +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +160 +INST_CRAIN_ON_SURFACE +? +1 +tmpl4_0 +CRAIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +551 +CSNOW_ON_SURFACE +Categorical snow on surface +1 +tmpl4_0 +CSNOW +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +552 +CICEP_ON_SURFACE +Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +553 +CFRZR_ON_SURFACE +Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +124 +CLWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLWMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +125 +ICMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +ICMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +415 +GRLE_ON_HYBRID_LVL +Graupel mixing ration on hybrid level +1 +tmpl4_0 +GRLE +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +145 +TCDC_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCDC +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +187 +RIME_ON_HYBRID_LVL +? +1 +tmpl4_0 +RIME +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +199 +TCOND_ON_HYBRID_LVL +? +1 +tmpl4_0 +TCOND +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +185 +FRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +FRAIN +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +186 +FICE_ON_HYBRID_LVL +? +1 +tmpl4_0 +FICE +NCEP +? +hybrid_lvl +0 +? +64 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +137 +ACM_PEVAP_ON_SURFACE +? +1 +tmpl4_8 +PEVAP +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +52 +LMH_ON_SURFACE +? +1 +tmpl4_0 +LMH +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +53 +LMV_ON_SURFACE +? +1 +tmpl4_0 +LMV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +150 +ALBDO_ON_SURFACE +? +1 +tmpl4_0 +ALBDO +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +67 +PRES_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PRES +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +68 +TMP_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +TMP +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +69 +POT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +POT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +70 +DPT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +DPT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +SPFH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +72 +RH_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +RH +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +88 +MCONV_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +MCONV +NCEP +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PWAT +? +? +spec_pres_above_grnd +0 +? +1 +3000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +UGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +VGRD +? +? +spec_pres_above_grnd +0 +? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd +0 +? +6 +0. 3000. 6000. 9000. 12000. 15000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +256 +ACM_LSPA_ON_SURFACE +? +1 +tmpl4_8 +LSPA +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +282 +PRES_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +PRES +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +283 +PRES_ON_HYBRID_LVL_1L +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +1 +1. +hybrid_lvl +0 +? +1 +21. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +273 +PRES_ON_HYBRID_LVL_LLM +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +1 +1. +hybrid_lvl +0 +? +1 +61. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +NCEP +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +148 +PRES_ON_CLOUD_BASE +? +1 +tmpl4_0 +PRES +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +135 +AVE_GFLUX_ON_SURFACE +? +1 +tmpl4_8 +GFLUX +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +136 +AVE_SNOHF_ON_SURFACE +? +1 +tmpl4_8 +SNOHF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +TMP +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +UGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? +1 +tmpl4_0 +VGRD +? +? +spec_alt_above_mean_sea_lvl +0 +? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +2.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +173 +PRES_ON_MAX_WIND +? +1 +tmpl4_0 +PRES +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +174 +HGT_ON_MAX_WIND +? +1 +tmpl4_0 +HGT +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +175 +UGRD_ON_MAX_WIND +? +1 +tmpl4_0 +UGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +176 +VGRD_ON_MAX_WIND +? +1 +tmpl4_0 +VGRD +? +? +max_wind +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +180 +VIS_ON_SURFACE +? +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_bot_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL +? +1 +tmpl4_0 +PRES +? +? +grid_scale_cloud_top_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +428 +TCOLG_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLG +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +219 +SOTYP_ON_SURFACE +? +1 +tmpl4_0 +SOTYP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +220 +CCOND_ON_SURFACE +? +1 +tmpl4_0 +CCOND +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +231 +SBSNO_ON_SURFACE +? +1 +tmpl4_0 +SBSNO +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +232 +SMDRY_ON_SURFACE +? +1 +tmpl4_0 +SMDRY +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +233 +POROS_ON_SURFACE +? +1 +tmpl4_0 +POROS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +234 +RSMIN_ON_SURFACE +? +1 +tmpl4_0 +RSMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +235 +RLYRS_ON_SURFACE +? +1 +tmpl4_0 +RLYRS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +236 +WILT_ON_SURFACE +? +1 +tmpl4_0 +WILT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +237 +SMREF_ON_SURFACE +? +1 +tmpl4_0 +SMREF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +238 +RCS_ON_SURFACE +? +1 +tmpl4_0 +RCS +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +239 +RCT_ON_SURFACE +? +1 +tmpl4_0 +RCT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +240 +RCQ_ON_SURFACE +? +1 +tmpl4_0 +RCQ +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +241 +RCSOL_ON_SURFACE +? +1 +tmpl4_0 +RCSOL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +242 +PEVPR_ON_SURFACE +? +1 +tmpl4_0 +PEVPR +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +247 +HGT_ON_LWST_LVL_OF_WET_BULB_ZERO +? +1 +tmpl4_0 +HGT +? +? +lwst_lvl_of_wet_bulb_zero +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +254 +LAI_ON_SURFACE +? +1 +tmpl4_0 +LAI +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +262 +INST_CSDSF_ON_SURFACE +? +1 +tmpl4_0 +CSDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +289 +HGT_ON_PLANETARY_BOUND_LYR +? +1 +tmpl4_0 +HGT +? +? +planetary_bound_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +381 +MIXHT_ON_SURFACE +? +1 +tmpl4_0 +MIXHT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +505 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +500 +AVE_SNOWC_ON_SURFACE +? +1 +tmpl4_8 +SNOWC +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +501 +AVE_PRES_ON_SURFACE +? +1 +tmpl4_8 +PRES +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +502 +AVE_TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_8 +TMP +? +AVE +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +503 +AVE_AKHS_ON_SURFACE +? +1 +tmpl4_8 +AKHS +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +504 +AVE_AKMS_ON_SURFACE +? +1 +tmpl4_8 +AKMS +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/tests/parm/postxconfig-NT-hafs.txt b/tests/parm/postxconfig-NT-hafs.txt new file mode 100644 index 000000000..03e551e5d --- /dev/null +++ b/tests/parm/postxconfig-NT-hafs.txt @@ -0,0 +1,3274 @@ +1 +88 +HURPRS +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hafs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +22 +TKE_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TKE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +153 +CLWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +251 +REFD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +REFD +? +? +isobaric_sfc +0 +? +45 +200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +158 +POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +27 +POT_ON_SURFACE +? +1 +tmpl4_0 +POT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +28 +SPFH_ON_SURFACE +? +1 +tmpl4_0 +SPFH +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +139 +AVE_CDLYR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +CDLYR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +275 +BRTMP_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +BRTMP +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +132 +CD_ON_SURFACE +? +1 +tmpl4_0 +CD +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +43 +AVE_SHTFL_ON_SURFACE +? +1 +tmpl4_8 +SHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +42 +AVE_LHTFL_ON_SURFACE +? +1 +tmpl4_8 +LHTFL +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +47 +ACM_EVP_ON_SURFACE +? +1 +tmpl4_8 +EVP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +285 +TCLSW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCLSW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +286 +TCOLM_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLM +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +291 +LWHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +LWHR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +292 +AVE_LRGHR_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LRGHR +NCEP +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? diff --git a/tests/rt.conf b/tests/rt.conf index 2dd89c69e..0c596e9aa 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -40,6 +40,7 @@ COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y RUN | fv3_ccpp_regional_control | | fv3 | RUN | fv3_ccpp_regional_restart | | fv3 | fv3_ccpp_regional_control RUN | fv3_ccpp_regional_quilt | | fv3 | +RUN | fv3_ccpp_regional_quilt_hafs | | fv3 | RUN | fv3_ccpp_regional_quilt_netcdf_parallel | | fv3 | #RUN | fv3_ccpp_regional_c768 | wcoss_dell_p3 | fv3 | #RUN | fv3_ccpp_regional_c768 | hera.intel | fv3 | @@ -81,6 +82,7 @@ RUN | fv3_ccpp_gfs_v16_stochy RUN | fv3_ccpp_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP | | fv3 | RUN | fv3_ccpp_gfs_v16_RRTMGP_c192L127 | | fv3 | +RUN | fv3_ccpp_gfs_v16_RRTMGP_2thrd | | fv3 | COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_ccpp_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests @@ -185,7 +187,7 @@ RUN | datm_control_gefs RUN | datm_bulk_cfsr | - wcoss_cray jet.intel | fv3 | RUN | datm_bulk_gefs | - wcoss_cray jet.intel | fv3 | -RUN | datm_mx025_cfsr | - wcoss_cray jet.intel | fv3 | +RUN | datm_mx025_cfsr | - wcoss_cray jet.intel gaea.intel | fv3 | RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index d2a16ac9c..90879ab31 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,13 +415,14 @@ if [[ $TESTS_FILE =~ '35d' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210309/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210217} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210309} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20201220 +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210212} shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -501,6 +502,7 @@ if [[ $ROCOTO == true ]]; then + ]> @@ -700,6 +702,7 @@ EOF export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} + export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 52f9dd8f6..a6e982a4d 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -327,6 +327,10 @@ check_results() { fi + echo >> ${REGRESSIONTEST_LOG} + grep "The total amount of wall time" ${RUNDIR}/out >> ${REGRESSIONTEST_LOG} + echo >> ${REGRESSIONTEST_LOG} + echo "Test ${TEST_NR} ${TEST_NAME} ${test_status}" >> ${REGRESSIONTEST_LOG} echo >> ${REGRESSIONTEST_LOG} echo "Test ${TEST_NR} ${TEST_NAME} ${test_status}" diff --git a/tests/run_test.sh b/tests/run_test.sh index f26377efb..582e3bd17 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -79,12 +79,6 @@ cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/../NEMS/src/conf/module-setup.sh.inc module-setup.sh -if [[ $FV3 = 'true' ]]; then - cp ${PATHRT}/parm/post_itag itag - cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt - cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new -fi SRCD="${PATHTR}" RUND="${RUNDIR}" @@ -107,7 +101,7 @@ source ./fv3_run if [[ $DATM = 'true' ]] || [[ $S2S = 'true' ]]; then edit_ice_in < ${PATHRT}/parm/ice_in_template > ice_in edit_mom_input < ${PATHRT}/parm/${MOM_INPUT:-MOM_input_template_$OCNRES} > INPUT/MOM_input - edit_diag_table < ${PATHRT}/parm/diag_table_template > diag_table + edit_diag_table < ${PATHRT}/parm/${DIAG_TABLE:-diag_table_template} > diag_table edit_data_table < ${PATHRT}/parm/data_table_template > data_table # CMEPS cp ${PATHRT}/parm/fd_nems.yaml fd_nems.yaml @@ -150,7 +144,11 @@ atparse < ${PATHRT}/parm/${NEMS_CONFIGURE:-nems.configure} > nems.configure if [[ $SCHEDULER = 'none' ]]; then ulimit -s unlimited - mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + if [[ $CI_TEST = 'true' ]]; then + eval mpiexec -n ${TASKS} ${MPI_PROC_BIND} ./fv3.exe >out 2> >(tee err >&3) + else + mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) + fi else diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index a3df8a215..48990102d 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -133,6 +133,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index b389b653c..1a952f79a 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -82,6 +82,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export RT35D='.T.' diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index 4ff8cb3cf..ea5aff003 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -140,6 +140,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 2fe7071e5..5990dba60 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -101,6 +101,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export RT35D='.T.' diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac index 7b842ad1e..b4d857cba 100644 --- a/tests/tests/cpld_bmarkfrac +++ b/tests/tests/cpld_bmarkfrac @@ -136,6 +136,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 index 6fc6279a1..20aac3cea 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -99,7 +99,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -115,7 +115,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" @@ -142,7 +143,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16_35d b/tests/tests/cpld_bmarkfrac_v16_35d new file mode 100644 index 000000000..413504e17 --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_v16_35d @@ -0,0 +1,96 @@ +# +# cpld_bmark_v16 35D +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark 35d test with v16" + +export_35d_run +export_fv3 +export_cpl + +export SYEAR +export SMONTH +export SDAY="01" +export SHOUR="00" + +export DAYS="35" +export FHMAX="840" +export RESTART_N=${FHMAX} +export WLCLK=480 + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='225' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 +export PSM_BC=1 +export DDDMP=0.2 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" +export SUITE_NAME="FV3_GFS_v16_coupled" +export RT35D='.T.' +export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave b/tests/tests/cpld_bmarkfrac_wave index 667579157..1b0b44f20 100644 --- a/tests/tests/cpld_bmarkfrac_wave +++ b/tests/tests/cpld_bmarkfrac_wave @@ -143,6 +143,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_35d b/tests/tests/cpld_bmarkfrac_wave_35d index 15bfdb299..86c063649 100644 --- a/tests/tests/cpld_bmarkfrac_wave_35d +++ b/tests/tests/cpld_bmarkfrac_wave_35d @@ -104,6 +104,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export RT35D='.T.' diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 index a9eca4e24..080555f97 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -5,21 +5,20 @@ export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 export CNTL_DIR="cpld_bmarkfrac_wave_v16" -export LIST_FILES="phyf012.tile1.nc \ - phyf012.tile2.nc \ - phyf012.tile3.nc \ - phyf012.tile4.nc \ - phyf012.tile5.nc \ - phyf012.tile6.nc \ - dynf012.tile1.nc \ - dynf012.tile2.nc \ - dynf012.tile3.nc \ - dynf012.tile4.nc \ - dynf012.tile5.nc \ - dynf012.tile6.nc \ - 20130401.120000.out_grd.gwes_30m \ - 20130401.120000.out_pnt.points \ - 20130401.120000.restart.gwes_30m \ +export LIST_FILES="phyf006.tile1.nc \ + phyf006.tile2.nc \ + phyf006.tile3.nc \ + phyf006.tile4.nc \ + phyf006.tile5.nc \ + phyf006.tile6.nc \ + dynf006.tile1.nc \ + dynf006.tile2.nc \ + dynf006.tile3.nc \ + dynf006.tile4.nc \ + dynf006.tile5.nc \ + dynf006.tile6.nc \ + 20130401.060000.out_grd.gwes_30m \ + 20130401.060000.out_pnt.points \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -56,8 +55,8 @@ export LIST_FILES="phyf012.tile1.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-43200.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + RESTART/iced.2013-04-01-21600.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" export_fv3 export_cpl @@ -67,8 +66,8 @@ export SMONTH="04" export SDAY="01" export SHOUR="00" -export DAYS="0.5" -export FHMAX="12" +export DAYS="0.25" +export FHMAX="6" export RESTART_INTERVAL=${FHMAX} export RESTART_N=${RESTART_INTERVAL} @@ -104,7 +103,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -121,7 +120,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 export CPLWAV='.T.' export CPLWAV2ATM='.T.' @@ -152,6 +152,6 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d index b51712005..593ad312b 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -71,7 +71,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -88,7 +88,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 export CPLWAV='.T.' export CPLWAV2ATM='.T.' @@ -119,7 +120,7 @@ export RUNID="cpcice" export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark index e5d9ecf2a..bde73202e 100644 --- a/tests/tests/cpld_restart_bmark +++ b/tests/tests/cpld_restart_bmark @@ -148,6 +148,7 @@ export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac index b0d1bb3f6..de460c2c2 100644 --- a/tests/tests/cpld_restart_bmarkfrac +++ b/tests/tests/cpld_restart_bmarkfrac @@ -151,6 +151,7 @@ export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" +export DIAG_TABLE="diag_table_bmark_template" export SUITE_NAME="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 index 864db722b..f969bc447 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -103,7 +103,7 @@ export NPROC_ICE='48' export CDMBWD=${CDMBWD_c384} # set component and coupling timesteps -export DT_ATMOS='300' +export DT_ATMOS='225' export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' @@ -119,7 +119,8 @@ export CPLMODE='nems_frac' export NPZ=127 export NPZP=128 -#export DZ_MIN=6 +export PSM_BC=1 +export DDDMP=0.2 # resolution dependent files export MOM_INPUT="MOM_input_template_${OCNRES}" @@ -158,7 +159,7 @@ export USE_RESTART_TIME='.true.' export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" -export DIAG_TABLE="diag_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" export SUITE_NAME="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post index ba5813bef..129fab60f 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_32bit_post +++ b/tests/tests/fv3_ccpp_gfdlmprad_32bit_post @@ -66,6 +66,7 @@ export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" export OUTPUT_HISTORY=.true. export WRITE_DOPOST=.true. +export POSTAPP='global' export WRITE_NEMSIOFLIP=.true. export WRITE_FSYNCFLAG=.true. diff --git a/tests/tests/fv3_ccpp_gfdlmprad_noahmp b/tests/tests/fv3_ccpp_gfdlmprad_noahmp index 7eb7ac54c..3767fd780 100644 --- a/tests/tests/fv3_ccpp_gfdlmprad_noahmp +++ b/tests/tests/fv3_ccpp_gfdlmprad_noahmp @@ -59,6 +59,10 @@ export LGFDLMPRAD=.true. export EFFR_IN=.true. export LSM=2 export LANDICE=.false. +export LHEATSTRG=.false. +export IALB=2 +export IEMS=2 + export OUTPUT_GRID="'gaussian_grid'" export OUTPUT_FILE="'nemsio'" diff --git a/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd new file mode 100644 index 000000000..ec4d6d131 --- /dev/null +++ b/tests/tests/fv3_ccpp_gfs_v16_RRTMGP_2thrd @@ -0,0 +1,89 @@ +############################################################################### +# +# FV3 CCPP GFS v16 w/ RRTMGP test using two openMP threads +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP GFS v16 w/ RRTMGP using two threads results with previous trunk version" + +export CNTL_DIR=fv3_gfs_v16_RRTMGP + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf024.tile1.nc \ + phyf024.tile2.nc \ + phyf024.tile3.nc \ + phyf024.tile4.nc \ + phyf024.tile5.nc \ + phyf024.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf024.tile1.nc \ + dynf024.tile2.nc \ + dynf024.tile3.nc \ + dynf024.tile4.nc \ + dynf024.tile5.nc \ + dynf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export THRD=2 +export TASKS=$TASKS_thrd +export TPN=$TPN_thrd +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=12 + +DT_ATMOS="1200" +export DO_RRTMGP=.T. + +export FV3_RUN=ccpp_gfs_v16_run.IN +export CCPP_SUITE=FV3_GFS_v16_RRTMGP +export INPUT_NML=ccpp_v16_c96_rrtmgp.nml.IN + diff --git a/tests/tests/fv3_ccpp_regional_control b/tests/tests/fv3_ccpp_regional_control index 4325f8a06..dd7f2ee05 100644 --- a/tests/tests/fv3_ccpp_regional_control +++ b/tests/tests/fv3_ccpp_regional_control @@ -24,6 +24,9 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export RESTART_INTERVAL=12 +export QUILTING=.false. +export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_control_debug b/tests/tests/fv3_ccpp_regional_control_debug index 736ad8ada..f03ca2790 100644 --- a/tests/tests/fv3_ccpp_regional_control_debug +++ b/tests/tests/fv3_ccpp_regional_control_debug @@ -25,6 +25,8 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export QUILTING=.false. +export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_ccpp_regional_quilt index 43b6eae94..6fcc844d6 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_ccpp_regional_quilt @@ -8,11 +8,14 @@ export TEST_DESCR="Compare FV3 CCPP regional quilt results with previous trunk v export CNTL_DIR=fv3_regional_quilt -export LIST_FILES=" atmos_4xdaily.nc \ - dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc " +export LIST_FILES="dynf000.nc \ + dynf024.nc \ + phyf000.nc \ + phyf024.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF24 \ + NATLEV.GrbF00 \ + NATLEV.GrbF24" export_fv3 @@ -24,9 +27,12 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export WRITE_DOPOST=.true. +export POSTAPP='lam' export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN export FDIAG=3 export INPES=6 diff --git a/tests/tests/fv3_ccpp_regional_quilt_hafs b/tests/tests/fv3_ccpp_regional_quilt_hafs new file mode 100644 index 000000000..3cfbbbc2e --- /dev/null +++ b/tests/tests/fv3_ccpp_regional_quilt_hafs @@ -0,0 +1,39 @@ +############################################################################### +# +# FV3 CCPP regional control test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP regional quilt results with previous trunk version" + +export CNTL_DIR=fv3_regional_quilt_hafs + +export LIST_FILES="dynf000.nc \ + dynf024.nc \ + phyf000.nc \ + phyf024.nc \ + HURPRS.GrbF00 \ + HURPRS.GrbF24" + +export_fv3 + +export TASKS=28 + +export FV3_RUN=ccpp_regional_run.IN + +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. +export HYBEDMF=.F. +export WRITE_DOPOST=.true. +export POSTAPP='hafs' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export INPUT_NML=ccpp_regional.nml.IN +export MODEL_CONFIGURE=model_configure_hafs.IN + +export FDIAG=3 +export INPES=6 +export JNPES=4 + +export WLCLK=30 diff --git a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel index c1659a968..2a8ee350b 100644 --- a/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel +++ b/tests/tests/fv3_ccpp_regional_quilt_netcdf_parallel @@ -24,6 +24,9 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export MODEL_CONFIGURE=model_configure_regional.IN +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export IDEFLATE=1 export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_restart b/tests/tests/fv3_ccpp_regional_restart index db2fde1a4..cd4c21022 100644 --- a/tests/tests/fv3_ccpp_regional_restart +++ b/tests/tests/fv3_ccpp_regional_restart @@ -23,6 +23,8 @@ export OZ_PHYS_OLD=.F. export OZ_PHYS_NEW=.T. export H2O_PHYS=.T. export HYBEDMF=.F. +export QUILTING=.false. +export MODEL_CONFIGURE=model_configure_regional.IN export CCPP_SUITE=FV3_GFS_v15_thompson_mynn export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta b/tests/tests/fv3_ccpp_rrfs_v1beta index 61f83dd20..d5a9f5f68 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta +++ b/tests/tests/fv3_ccpp_rrfs_v1beta @@ -93,6 +93,8 @@ export IMFSHALCNV=-1 export IMFDEEPCNV=-1 export LSM=2 export LSOIL_LSM=4 +export IALB=2 +export IEMS=2 #export GWD_OPT=3 #export DO_UGWP_V0=.F. #export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/tests/fv3_ccpp_rrfs_v1beta_debug b/tests/tests/fv3_ccpp_rrfs_v1beta_debug index 8c7475ef3..66e4b02ed 100644 --- a/tests/tests/fv3_ccpp_rrfs_v1beta_debug +++ b/tests/tests/fv3_ccpp_rrfs_v1beta_debug @@ -93,6 +93,9 @@ export IMFSHALCNV=-1 export IMFDEEPCNV=-1 export LSM=2 export LSOIL_LSM=4 +export IALB=2 +export IEMS=2 + #export GWD_OPT=3 #export DO_UGWP_V0=.F. #export DO_UGWP_V0_OROG_ONLY=.F. diff --git a/tests/utest b/tests/utest index e9dcc8341..6dd139429 100755 --- a/tests/utest +++ b/tests/utest @@ -138,17 +138,21 @@ run_utests() { CREATE_BASELINE=true BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export RESTART_INTERVAL=$(( FHMAX/2 )) + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; std) CREATE_BASELINE=false BL_SUFFIX=_std_base cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; thr) @@ -161,31 +165,41 @@ run_utests() { TPN=$(( TPN/THRD )) NODES=$(( TASKS/TPN + 1 )) cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export THRD=${THRD} export JNPES=${JNPES} export TASKS=${TASKS} export TPN=${TPN} export NODES=${NODES} + export MPI_PROC_BIND="-bind-to user:0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,37,38,39,40,41" EOF ;; mpi) CREATE_BASELINE=false BL_SUFFIX=_std_base - JNPES=$(( JNPES/2 )) + if [[ ${CI_TEST} == true ]]; then + INPES=2 + JNPES=2 + else + JNPES=$(( JNPES/2 )) + fi WRITE_GROUP=2 WRTTASK_PER_GROUP=12 TASKS=$(( INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP )) NODES=$(( TASKS/TPN + 1 )) cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export INPES=${INPES} export JNPES=${JNPES} export WRITE_GROUP=${WRITE_GROUP} export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} export TASKS=${TASKS} export NODES=${NODES} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47" EOF ;; dcp) @@ -195,10 +209,12 @@ run_utests() { INPES=$JNPES JNPES=$temp cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export INPES=${INPES} export JNPES=${JNPES} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; rst) # this is not going to work for regional model @@ -250,7 +266,8 @@ run_utests() { fi cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export RESTART_FILE_PREFIX=${RESTART_FILE_PREFIX} export WARM_START=${WARM_START} @@ -261,6 +278,7 @@ run_utests() { export NA_INIT=${NA_INIT} export NSTF_NAME=${NSTF_NAME} export LIST_FILES="${LIST_FILES}" + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; bit_base) @@ -268,8 +286,10 @@ run_utests() { BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; bit) @@ -277,8 +297,10 @@ run_utests() { BL_SUFFIX=_bit_base comp_nm=bit cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; dbg_base) @@ -287,9 +309,11 @@ run_utests() { comp_nm=dbg WLCLK=30 cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export WLCLK=${WLCLK} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; dbg) @@ -298,9 +322,11 @@ run_utests() { comp_nm=dbg WLCLK=30 cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env - export UNIT_TEST=true + export UNIT_TEST=${UNIT_TEST} + export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export WLCLK=${WLCLK} + export MPI_PROC_BIND="-bind-to user:0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41" EOF ;; esac